Stubbed simulator, renamed app, added more tooltips and use more icons

This commit is contained in:
2020-06-09 12:50:38 -05:00
parent 8aa61843e8
commit 7fde76f2da
5 changed files with 42 additions and 18 deletions

21
lib/states/simulator.rb Normal file
View File

@@ -0,0 +1,21 @@
module TAC
class States
class Simulator < CyberarmEngine::GuiState
def setup
theme(THEME)
stack width: 1.0, height: 0.1 do
background [TAC::Palette::TIMECRAFTERS_PRIMARY, TAC::Palette::TIMECRAFTERS_SECONDARY]
label "#{TAC::NAME} ― Simulator", text_size: 28, color: Gosu::Color::BLACK
button "Close", text_size: 18 do
pop_state
end
end
flow width: 1.0, height: 1.0 do
background [Gosu::Color::GRAY, Gosu::Color::BLACK]
end
end
end
end
end