Danbias/Code/GameLogic/Level.h

37 lines
511 B
C
Raw Normal View History

2013-11-28 08:33:29 +01:00
//////////////////////////////////////////////////
//Created by Erik and Linda of the GameLogic team
//////////////////////////////////////////////////
2013-11-19 11:07:14 +01:00
#ifndef LEVEL_H
#define LEVEL_H
2013-11-26 08:56:31 +01:00
#include "StaticObject.h"
#include "DynamicObject.h"
#include "GameMode.h"
2013-11-19 11:07:14 +01:00
namespace GameLogic
{
class Level
{
public:
Level(void);
~Level(void);
private:
2013-11-26 08:56:31 +01:00
StaticObject** staticObjects;
int nrOfStaticObjects;
DynamicObject** dynamicObjects;
int nrOfDynamicObjects;
GameMode* gameMode;
2013-11-19 11:07:14 +01:00
};
}
#endif