diff options
author | rtk0c <[email protected]> | 2022-04-25 20:22:07 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-25 20:22:07 -0700 |
commit | 855da86feae1a5cc14dc2d486ccf115f484dbc2e (patch) | |
tree | 8284c6a6bdfb1a919eb1a22f466f4180a329c7f3 /source/Level.cpp | |
parent | d78a55de5003dbb040f1d1c369409e63a2c806d8 (diff) |
Changeset: 16 Initial work on rendering sprites to screen
Diffstat (limited to 'source/Level.cpp')
-rw-r--r-- | source/Level.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/Level.cpp b/source/Level.cpp index 71a7473..eec7b85 100644 --- a/source/Level.cpp +++ b/source/Level.cpp @@ -1,5 +1,10 @@ #include "Level.hpp" +LevelWrapperObject::LevelWrapperObject(GameWorld* world) + : GameObject(KD_LevelWrapper, world) { + mStopFreePropagation = true; +} + LevelWrapperObject::~LevelWrapperObject() { for (auto child : GetChildren()) { FreeRecursive(child); |