summaryrefslogtreecommitdiffhomepage
path: root/components/debug_singleton.rb
diff options
context:
space:
mode:
Diffstat (limited to 'components/debug_singleton.rb')
-rw-r--r--components/debug_singleton.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/components/debug_singleton.rb b/components/debug_singleton.rb
new file mode 100644
index 0000000..f298172
--- /dev/null
+++ b/components/debug_singleton.rb
@@ -0,0 +1,13 @@
+class Components
+ # If an entity can be rendered on screen
+ class DebugSingleton
+ class <<self
+ @data = false
+ attr_accessor :data
+
+ def id
+ 0
+ end
+ end
+ end
+end