blob: eec7b85ce02b486719accafdea42df300facfdab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "Level.hpp"
LevelWrapperObject::LevelWrapperObject(GameWorld* world)
: GameObject(KD_LevelWrapper, world) {
mStopFreePropagation = true;
}
LevelWrapperObject::~LevelWrapperObject() {
for (auto child : GetChildren()) {
FreeRecursive(child);
}
}
|