summaryrefslogtreecommitdiffhomepage
path: root/components/debug_singleton.rb
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2021-05-26 01:24:30 -0400
committerrealtradam <[email protected]>2021-05-26 01:24:30 -0400
commit7bec71db2680e0503f39c31047f5f90ca89433df (patch)
tree4d987b479b0670256af5c1a4ffe5ab7b75fb23b4 /components/debug_singleton.rb
downloadFelECS-7bec71db2680e0503f39c31047f5f90ca89433df.tar.gz
FelECS-7bec71db2680e0503f39c31047f5f90ca89433df.zip
init
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