#include "Level.hpp" LevelWrapperObject::LevelWrapperObject(GameWorld* world) : GameObject(KD_LevelWrapper, world) { mStopFreePropagation = true; } LevelWrapperObject::~LevelWrapperObject() { for (auto child : GetChildren()) { FreeRecursive(child); } }