Files
timecrafters_configuration_…/lib/window.rb
2020-06-07 09:02:02 -05:00

14 lines
272 B
Ruby

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