00001 // $Id: game-client_8h-source.html,v 1.1 2002/06/20 17:09:51 mkrohn5 Exp $ 00002 00003 // Game Client Header File 00004 // Written by: Alberto Barsella, <> 00005 // Marco Krohn, <marco.krohn@gmx.de> 00006 00007 // Copyright (C) 2002 - , Marco Krohn, <marco.krohn@gmx.de> 00008 // 00009 // This program is free software; you can redistribute it and/or modify 00010 // it under the terms of the GNU General Public License as published by 00011 // the Free Software Foundation; either version 1, or (at your option) 00012 // any later version. 00013 // 00014 // This program is distributed in the hope that it will be useful, 00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 // GNU General Public License for more details. 00018 00019 #ifndef __GAME_CLIENT_INCLUDED 00020 #define __GAME_CLIENT_INCLUDED 00021 00022 #include "admin/game-sc.h" 00023 00024 00025 00026 00027 00028 //---------------------------------------- class TGameClient ---------------------------------------- 00029 00039 class TGameClient : public TGameSC 00040 { 00041 public: 00049 TGameClient( const string& gameDir, const string& gameName ); 00050 00059 bool initializePlayerOrders( const string& playerName ); 00064 bool savePlayerOrderFile() const; 00065 00066 protected: 00073 virtual void PDBLoadOrders( TDataPackageList* block ); 00074 }; 00075 00076 00077 00078 00079 00080 #endif // __GAME_CLIENT_INCLUDED 00081