Files
dae16-VerhulstBram-GameProject/Game/Levels/Level.cpp
2024-05-09 00:46:05 +02:00

12 lines
278 B
C++

#include "pch.h"
#include "Level.h"
#include "../Camera.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() = default;