]> git.tdb.fi Git - libs/game.git/blobdiff - source/game/director.h
Decorate things which constitute the public API of the library
[libs/game.git] / source / game / director.h
index 1be3e8fa31bbf59c892866c436439ed7ee8c87da..5aeddea932badd73b41d9f5aa56b2e4669c24a44 100644 (file)
 #include "eventbus.h"
 #include "events.h"
 #include "eventsource.h"
+#include "mspgame_api.h"
+#include "reflection.h"
 
 namespace Msp::Game {
 
 class Stage;
 
-class Director
+class MSPGAME_API Director
 {
 public:
        using EventSource = Game::EventSource<Events::StageCreated, Events::StageActivated, Events::StageDeactivated>;
 
 private:
        std::optional<AccessGuard> access_guard;
+       Reflection::Reflector reflector;
        DataFile::Collection &resources;
        EventBus event_bus;
        EventSource event_source;