blob: 7f46e982a8115c23b535e31da6b5e82a719b0c88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef INTERFACE_H
#define INTERFACE_H
class Interface
{
public:
Interface();
virtual ~Interface();
virtual void run( class Game *pGame )=0;
virtual void display( const class SmlNode *pSml )=0;
};
#endif
|