Update Gitignore and Basic Camera / Level Implementation

This commit is contained in:
2024-03-08 12:27:04 +01:00
parent 3dcfc744d5
commit 9dbfef5e78
15 changed files with 209 additions and 63 deletions

16
Game/Level.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
class Level
{
public:
Level();
~Level();
virtual void Update(float elapsedSec);
virtual void Draw() const;
private:
};