Fix camera, added more collsion stuff

added pink color
This commit is contained in:
Bram Verhulst
2024-03-19 10:20:07 +01:00
parent 6f2a6ead37
commit d5e4aa9752
13 changed files with 43 additions and 46 deletions

View File

@@ -3,7 +3,7 @@
#include <iostream>
Level::Level() : m_pCamera(nullptr) {
std::cout << "Cannot make level without a camera" << std::endl;
std::cout << "Cannot make level without a camera, Duh 🙄" << std::endl;
}
Level::Level(Camera* camera) {
m_pCamera = camera;