#ifndef LevelGenerationSystem_h__ #define LevelGenerationSystem_h__ #include "System.h" #include "World.h" #include "Components/Transform.h" #include "Components/Bounds.h" #include "Components/Collision.h" #include "Components/Model.h" namespace Systems { class LevelGenerationSystem : public System { public: LevelGenerationSystem(World* world); void SpawnObstacle(); void Update(double dt) override; private: int typeRandom; int positionRandom; glm::vec2 startyz; double elapsedtime; std::list obstacles; std::shared_ptr transform; std::shared_ptr bounds; std::shared_ptr collision; std::shared_ptr model; }; } #endif // LevelGenerationSystem_h__