Globals.bpi.cpp 488 B

123456789101112131415161718192021222324
  1. #include "ScriptingCommon.h"
  2. #include "Globals.h"
  3. #include "Logger.h"
  4. #include "MainRenderer.h"
  5. #include "Input.h"
  6. #include "Scene.h"
  7. #include "App.h"
  8. WRAP_SINGLETON(LoggerSingleton)
  9. WRAP_SINGLETON(MainRendererSingleton)
  10. WRAP_SINGLETON(InputSingleton)
  11. WRAP_SINGLETON(SceneSingleton)
  12. WRAP_SINGLETON(AppSingleton)
  13. void wrapAllGlobals()
  14. {
  15. CALL_WRAP(LoggerSingleton);
  16. CALL_WRAP(MainRendererSingleton);
  17. CALL_WRAP(InputSingleton);
  18. CALL_WRAP(SceneSingleton);
  19. CALL_WRAP(AppSingleton);
  20. }