mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 17:51:47 +01:00
Update Gitignore and Basic Camera / Level Implementation
This commit is contained in:
16
Game/Level.h
Normal file
16
Game/Level.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
class Level
|
||||
{
|
||||
public:
|
||||
Level();
|
||||
~Level();
|
||||
|
||||
|
||||
virtual void Update(float elapsedSec);
|
||||
virtual void Draw() const;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user