Initial Commit

This commit is contained in:
2020-06-07 09:02:02 -05:00
commit 5ea8d13653
8 changed files with 215 additions and 0 deletions

14
lib/window.rb Normal file
View File

@@ -0,0 +1,14 @@
module TAC
class Window < CyberarmEngine::Window
def initialize(**args)
super(**args)
self.caption = "#{TAC::NAME} v#{TAC::VERSION} (#{TAC::RELEASE_NAME})"
push_state(TAC::States::Editor)
end
def needs_cursor?
true
end
end
end