diff options
Diffstat (limited to 'src/player_gui.cpp')
-rw-r--r-- | src/player_gui.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/player_gui.cpp b/src/player_gui.cpp index 4724a0dbb..845d5249f 100644 --- a/src/player_gui.cpp +++ b/src/player_gui.cpp @@ -42,6 +42,12 @@ struct facesel_d { }; assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(facesel_d)); +struct highscore_d { + uint32 background_img; + int8 rank; +}; +assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(highscore_d)); + enum { FIRST_GUI_CALL = INT_MAX, ///< default value to specify thuis is the first call of the resizable gui }; |