(svn r11818) -Codechange: split player.h into smaller pieces.

This commit is contained in:
rubidium
2008-01-12 14:10:35 +00:00
parent 63cc41cd1c
commit 2fc62eab05
114 changed files with 295 additions and 189 deletions

View File

@@ -11,7 +11,8 @@
#include "textbuf_gui.h"
#include "viewport_func.h"
#include "gfx_func.h"
#include "player.h"
#include "player_func.h"
#include "player_base.h"
#include "command_func.h"
#include "network/network.h"
#include "variables.h"
@@ -29,6 +30,13 @@
#include "date_func.h"
#include "string_func.h"
/* player face selection window */
struct facesel_d {
PlayerFace face; // player face bits
bool advanced; // advance player face selection window
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(facesel_d));
static void DoShowPlayerFinances(PlayerID player, bool show_small, bool show_stickied);
static void DoSelectPlayerFace(PlayerID player, bool show_big);