| 123456789101112131415161718192021222324 |
- #include "ScriptingCommon.h"
- #include "Globals.h"
- #include "Logger.h"
- #include "MainRenderer.h"
- #include "Input.h"
- #include "Scene.h"
- #include "App.h"
- WRAP_SINGLETON(LoggerSingleton)
- WRAP_SINGLETON(MainRendererSingleton)
- WRAP_SINGLETON(InputSingleton)
- WRAP_SINGLETON(SceneSingleton)
- WRAP_SINGLETON(AppSingleton)
- void wrapAllGlobals()
- {
- CALL_WRAP(LoggerSingleton);
- CALL_WRAP(MainRendererSingleton);
- CALL_WRAP(InputSingleton);
- CALL_WRAP(SceneSingleton);
- CALL_WRAP(AppSingleton);
- }
|