src/player_gui.h
author peter1138
Thu, 07 Aug 2008 18:26:13 +0000
changeset 9869 548d99e11ad7
parent 8254 1496654ca5e7
child 10207 c291a21b304e
permissions -rw-r--r--
(svn r14015) -Codechange: Add facility for a drop down list to always close (if requested) when the mouse button is released.
/* $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 */