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

10
Game/Level.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "pch.h"
#include "Level.h"
Level::Level() {
}
Level::~Level() {
}
void Level::Update(float elapsedSec) {
}
void Level::Draw() const {
}