src/player_gui.h
author peter1138
Thu, 31 Jan 2008 23:04:45 +0000
changeset 8958 b2c67df4bcc0
parent 8750 fdd6054e7bae
permissions -rw-r--r--
(svn r12032) -Fix: When removing a statue, remove town statue flag for the statue owner, not current player.
/* $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 */