Files
dae16-VerhulstBram-GameProject/Game/Level.cpp
Bram Verhulst 0f9bb76973 Reformat + Basic animation system
General fixes
2024-04-01 10:27:37 +02:00

13 lines
249 B
C++

#include "pch.h"
#include "Level.h"
#include <iostream>
Level::Level() : m_pCamera(nullptr) {
std::cout << "Cannot make level without a camera, Duh 🙄" << std::endl;
}
Level::Level(Camera* camera) {
m_pCamera = camera;
}
Level::~Level() {
}