mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2026-02-04 14:59:20 +01:00
17 lines
149 B
C++
17 lines
149 B
C++
#pragma once
|
|
|
|
class Level
|
|
{
|
|
public:
|
|
Level();
|
|
~Level();
|
|
|
|
|
|
virtual void Update(float elapsedSec);
|
|
virtual void Draw() const;
|
|
|
|
private:
|
|
|
|
|
|
};
|