| 123456789101112131415161718192021222324252627282930313233343536 |
- // Copyright (C) 2014, Panagiotis Christopoulos Charitos.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #ifndef ANKI_SCRIPT_SCRIPT_MANAGER_H
- #define ANKI_SCRIPT_SCRIPT_MANAGER_H
- #include "anki/script/LuaBinder.h"
- #include "anki/util/Singleton.h"
- namespace anki {
- // Forward
- class App;
- /// @addtogroup script
- /// @{
- /// The scripting manager
- class ScriptManager: public LuaBinder
- {
- public:
- ScriptManager(HeapAllocator<U8>& alloc);
- ~ScriptManager();
- private:
- App* m_app;
- };
- /// @}
- } // end namespace anki
- #endif
|