This commit is contained in:
doitux
2007-01-22 22:25:58 +00:00
parent ff0881df3e
commit e67c72e010
11 changed files with 65 additions and 73 deletions
+7 -1
View File
@@ -21,18 +21,21 @@
#define GAME_H
#include <iostream>
#include <string>
#include <sstream>
class GuiInterface;
class HandInterface;
class PlayerInterface;
class BoardInterface;
class EngineFactory;
class ConfigFile;
class Game {
public:
Game(GuiInterface*, int, int, int);
Game(ConfigFile*, GuiInterface*, int, int, int);
~Game();
@@ -73,11 +76,14 @@ public:
private:
EngineFactory *myFactory;
ConfigFile *myConfig;
GuiInterface *myGui;
HandInterface *actualHand;
BoardInterface *actualBoard;
PlayerInterface *playerArray[5];
//Startvariablen
int startQuantityPlayers;
int startCash;