diff options
| author | realtradam <[email protected]> | 2021-12-19 21:45:47 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2021-12-19 21:45:47 -0500 |
| commit | 9d840260e873ee914a97eb37ab7aeaab54c098bf (patch) | |
| tree | 206249a818d5a1d6c3fa40843fb169226bed7f3a /app/main.rb | |
| parent | 6437b020ee60a1c80a06db638c713a8f1e9a3d2f (diff) | |
| download | SteelWings-9d840260e873ee914a97eb37ab7aeaab54c098bf.tar.gz SteelWings-9d840260e873ee914a97eb37ab7aeaab54c098bf.zip | |
Finished player shooting bullet system
Diffstat (limited to 'app/main.rb')
| -rw-r--r-- | app/main.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/main.rb b/app/main.rb index 9056d53..a5a1c5c 100644 --- a/app/main.rb +++ b/app/main.rb @@ -18,6 +18,9 @@ require 'app/components/stats/hp.rb' require 'app/components/hitcircle.rb' require 'app/components/teams/singleton_player_team.rb' require 'app/components/teams/singleton_enemy_team.rb' +require 'app/components/weapon.rb' +require 'app/components/teams/team.rb' + require 'app/systems/init_title_screen.rb' require 'app/systems/title_screen.rb' @@ -35,6 +38,7 @@ require 'app/systems/debug/debug_render_vector_arrow.rb' require 'app/systems/camera.rb' require 'app/systems/collision_damage.rb' require 'app/systems/death.rb' +require 'app/systems/player_weapon.rb' require 'app/factories/bullet.rb' require 'app/factories/ships/osprey.rb' |
