myW removed from engine classes

This commit is contained in:
doitux
2007-01-13 14:27:56 +00:00
parent d17b23737a
commit 1afc0c12c1
20 changed files with 226 additions and 159 deletions
+1 -3
View File
@@ -23,7 +23,6 @@
#include <fstream>
#include <string>
class mainWindowImpl;
class GuiInterface;
class Game;
@@ -31,7 +30,7 @@ class Game;
class Session{
public:
Session(mainWindowImpl*, GuiInterface*);
Session(GuiInterface*);
~Session();
@@ -40,7 +39,6 @@ public:
private:
Game *actualGame;
mainWindowImpl *myW;
GuiInterface *myGui;
};