Files
i-mic-rts/lib/states/about_menu.rb
2019-09-30 20:49:41 -05:00

18 lines
476 B
Ruby

class IMICRTS
class AboutMenu < CyberarmEngine::GuiState
def setup
background [0xff7b6ead, 0xff7a0d71, 0xff7a0d71, 0xff7b6ead]
stack(height: 1.0) do
background [0xff555555, Gosu::Color::GRAY]
label "About I-MIC-RTS", text_size: 78, margin: 20
label "Words go here.\nMore words also go here. Thank you and have a nice day."
button("Back", width: 1.0) do
push_state(MainMenu)
end
end
end
end
end