ScriptManager.h 529 B

123456789101112131415161718192021222324252627282930
  1. // Copyright (C) 2014, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #ifndef ANKI_SCRIPT_SCRIPT_MANAGER_H
  6. #define ANKI_SCRIPT_SCRIPT_MANAGER_H
  7. #include "anki/script/LuaBinder.h"
  8. #include "anki/util/Singleton.h"
  9. namespace anki {
  10. /// @addtogroup script
  11. /// @{
  12. /// The scripting manager
  13. class ScriptManager: public LuaBinder
  14. {
  15. public:
  16. ScriptManager(HeapAllocator<U8>& alloc);
  17. ~ScriptManager();
  18. };
  19. /// @}
  20. } // end namespace anki
  21. #endif