diff options
Diffstat (limited to 'src/hud.h')
-rw-r--r-- | src/hud.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -78,6 +78,8 @@ enum HudElementStat { HUD_STAT_SIZE, HUD_STAT_Z_INDEX, HUD_STAT_TEXT2, + HUD_STAT_BOLD, + HUD_STAT_ITALIC, }; enum HudCompassDir { @@ -102,6 +104,8 @@ struct HudElement { v2s32 size; s16 z_index = 0; std::string text2; + bool bold; + bool italic; }; extern const EnumString es_HudElementType[]; |