Added basic dialogs, added 'blindman' implementation of TACNET networking code, added font

This commit is contained in:
2020-06-07 15:18:31 -05:00
parent 5ea8d13653
commit c694d29050
20 changed files with 870 additions and 5 deletions

19
lib/theme.rb Normal file
View File

@@ -0,0 +1,19 @@
module TAC
THEME = {
Label: {
font: "#{TAC::ROOT_PATH}/media/DejaVuSansCondensed.ttf",
text_size: 28
},
Button: {
background: TAC::Palette::TIMECRAFTERS_PRIMARY,
border_thickness: 1,
border_color: Gosu::Color.new(0xff_111111),
hover: {
background: TAC::Palette::TIMECRAFTERS_SECONDARY,
},
active: {
background: TAC::Palette::TIMECRAFTERS_TERTIARY
}
}
}
end