mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 20:41:47 +01:00
14 lines
272 B
C++
14 lines
272 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() {
|
|
}
|