mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 22:11:48 +01:00
23 lines
380 B
C++
23 lines
380 B
C++
#pragma once
|
|
|
|
class Camera;
|
|
|
|
class Level
|
|
{
|
|
public:
|
|
Level();
|
|
Level(Camera* camera);
|
|
virtual ~Level();
|
|
|
|
Level(const Level& other) = default;
|
|
Level(Level&& other) = default;
|
|
|
|
virtual void Update(float elapsedSec) = 0;
|
|
virtual void Draw() const = 0;
|
|
virtual void MouseMove(const Vector2f& mousePos) = 0;
|
|
virtual void ProcessImGui() = 0;
|
|
|
|
protected:
|
|
Camera* m_pCamera;
|
|
};
|