diff options
Diffstat (limited to 'app/ECS/component_manager.rb')
| -rw-r--r-- | app/ECS/component_manager.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/ECS/component_manager.rb b/app/ECS/component_manager.rb index e64bc21..b07cf79 100644 --- a/app/ECS/component_manager.rb +++ b/app/ECS/component_manager.rb @@ -1,5 +1,7 @@ -require_relative './base_component' -Dir[File.join(__dir__, 'components', '*.rb')].sort.each { |file| require file } +require 'app/ECS/base_component.rb' + +require 'app/ECS/components/00_test_component.rb' +require 'app/ECS/components/01_based.rb' class ECS class Components |
