mancatux/src/Session.h

23 lines
336 B
C
Raw Permalink Normal View History

2007-10-15 21:32:30 +02:00
#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_;
2007-10-15 21:32:30 +02:00
};
#endif