diff options
Diffstat (limited to 'src/gui/theme.h')
-rw-r--r-- | src/gui/theme.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/gui/theme.h b/src/gui/theme.h index fcd0f5614..222d0d098 100644 --- a/src/gui/theme.h +++ b/src/gui/theme.h @@ -45,11 +45,27 @@ struct ThemeInfo final { ThemeInfo() : name(), - copyright() + copyright(), + font(), + boldFont(), + particleFont(), + helpFont(), + secureFont(), + japanFont(), + fontSize(0), + npcfontSize(0) { } std::string name; std::string copyright; + std::string font; + std::string boldFont; + std::string particleFont; + std::string helpFont; + std::string secureFont; + std::string japanFont; + int fontSize; + int npcfontSize; }; class Skin final |