Level gen
This commit is contained in:
@@ -0,0 +1,8 @@
|
|||||||
|
#include "LevelGenerationSystem.h"
|
||||||
|
|
||||||
|
|
||||||
|
void Systems::LevelGenerationSystem::SpawnObstacle()
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
#ifndef LevelGenerationSystem_h__
|
||||||
|
#define LevelGenerationSystem_h__
|
||||||
|
|
||||||
|
#include "System.h"
|
||||||
|
|
||||||
|
namespace Systems
|
||||||
|
{
|
||||||
|
class LevelGenerationSystem : public System
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
LevelGenerationSystem(World* world)
|
||||||
|
: System(world) { }
|
||||||
|
|
||||||
|
void SpawnObstacle();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif // LevelGenerationSystem_h__
|
||||||
Reference in New Issue
Block a user