Added Director, Player and stubbed Order, mostly working Entity#rotate_towards

This commit is contained in:
2019-10-02 22:35:44 -05:00
parent e29bc47817
commit 8be63d8ebe
9 changed files with 185 additions and 19 deletions

View File

@@ -4,8 +4,13 @@ class IMICRTS
@last_update_time = Gosu.milliseconds
self.caption = "#{IMICRTS::NAME} (#{IMICRTS::VERSION} #{IMICRTS::VERSION_NAME})"
# push_state(Boot)
push_state(MainMenu)
if ARGV.join.include?("--fast")
push_state(MainMenu)
elsif ARGV.join.include?("--debug")
push_state(Game)
else
push_state(Boot)
end
end
def update