summaryrefslogtreecommitdiffhomepage
path: root/app/ECS/system_manager.rb
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2021-05-14 05:48:50 -0400
committerrealtradam <[email protected]>2021-05-14 05:48:50 -0400
commit6a2996ceae968029be26ed7ebae8785dcfe877d2 (patch)
treef3d4d405f7e032fcabbb9711f75e266282d98295 /app/ECS/system_manager.rb
parent57bd7ec9da14b3e7e338184568a273ce602e1557 (diff)
downloadtypemon-code-6a2996ceae968029be26ed7ebae8785dcfe877d2.tar.gz
typemon-code-6a2996ceae968029be26ed7ebae8785dcfe877d2.zip
added ECS system
Diffstat (limited to 'app/ECS/system_manager.rb')
-rw-r--r--app/ECS/system_manager.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/ECS/system_manager.rb b/app/ECS/system_manager.rb
new file mode 100644
index 0000000..53aa46b
--- /dev/null
+++ b/app/ECS/system_manager.rb
@@ -0,0 +1,6 @@
+Dir[File.join(__dir__, 'systems', '*.rb')].sort.each { |file| require file }
+
+class ECS
+ class Systems
+ end
+end