X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgame%2Froot.h;h=57e9c0f054c5a71f0e73729e1bd532b3b10246b6;hb=12c863fc1bc5456a4b3aceacc88904d76bd1d8bb;hp=4f7ea76101c4b831d2be304b922a047e508b4f19;hpb=5ef7c7a9e1e6681ce43fae217e0c3a1b846e6874;p=libs%2Fgame.git diff --git a/source/game/root.h b/source/game/root.h index 4f7ea76..57e9c0f 100644 --- a/source/game/root.h +++ b/source/game/root.h @@ -2,18 +2,19 @@ #define MSP_GAME_ROOT_H_ #include "entity.h" +#include "mspgame_api.h" namespace Msp::Game { class Stage; -class Root: public Entity +class MSPGAME_API Root: public Entity { 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; } };