19 lines
138 B
C
19 lines
138 B
C
|
#ifndef LEVEL_H
|
||
|
#define LEVEL_H
|
||
|
|
||
|
namespace GameLogic
|
||
|
{
|
||
|
|
||
|
class Level
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
Level(void);
|
||
|
~Level(void);
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif
|