mancatux/src/Session.h
2007-10-15 19:57:25 +00:00

23 lines
336 B
C++

#ifndef _SESSION_H_
#define _SESSION_H_
#include "IGame.h"
#include "EngineFactory.h"
class GuiWrapper;
class Session
{
public:
Session ( GuiWrapper * g ); // todo: change to GuiInterface
void newGame();
IGame * game() const;
private:
IGame * game_;
GuiWrapper * gui_;
EngineFactory factory_;
};
#endif