mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2026-02-04 10:49:21 +01:00
11 lines
148 B
C++
11 lines
148 B
C++
#include "pch.h"
|
|
#include "Level.h"
|
|
Level::Level() {
|
|
}
|
|
Level::~Level() {
|
|
}
|
|
void Level::Update(float elapsedSec) {
|
|
}
|
|
void Level::Draw() const {
|
|
}
|