]> git.tdb.fi Git - libs/game.git/blobdiff - source/game/root.h
Add a transform component and propagation system
[libs/game.git] / source / game / root.h
index 4f7ea76101c4b831d2be304b922a047e508b4f19..726ca32693bb385c4b9a46c9f5974594fe9ed0c4 100644 (file)
@@ -13,7 +13,7 @@ private:
        Stage &stage;
 
 public:
-       Root(Stage &s): Entity(nullptr), stage(s) { }
+       Root(Stage &s): Entity(nullptr, NO_TRANSFORM), stage(s) { }
 
        Stage &get_stage() const { return stage; }
 };