(svn r13015) -Codechange: move some 'WP' structs out of window_gui.h to the .cpp files where they are actually used.

This commit is contained in:
rubidium
2008-05-08 14:14:16 +00:00
parent f492567f66
commit 11d36d5e46
5 changed files with 32 additions and 45 deletions

View File

@@ -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
};