blob: a1ed36fcb8e2246b178f05540cff13cd78ced160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* $Id$ */
/** @file player_gui.h GUI Functions related to players. */
#ifndef PLAYER_GUI_H
#define PLAYER_GUI_H
#include "player_type.h"
uint16 GetDrawStringPlayerColor(PlayerID player);
void DrawPlayerIcon(PlayerID p, int x, int y);
void ShowPlayerStations(PlayerID player);
void ShowPlayerFinances(PlayerID player);
void ShowPlayerCompany(PlayerID player);
void InvalidatePlayerWindows(const Player *p);
void DeletePlayerWindows(PlayerID pi);
#endif /* PLAYER_GUI_H */
|