| 12345678910111213141516171819202122232425262728293031323334353637 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsScriptEditorPrerequisites.h"
- #include "BsEngineScriptLibrary.h"
- namespace BansheeEngine
- {
- /**
- * @brief Handles initialization/shutdown of the script systems and
- * loading/refresh of engine and editor-specific assemblies.
- */
- class BS_SCR_BED_EXPORT EditorScriptLibrary : public EngineScriptLibrary
- {
- public:
- EditorScriptLibrary();
- /**
- * @copydoc ScriptLibrary::initialize
- */
- void initialize() override;
- /**
- * @copydoc ScriptLibrary::reload
- */
- void reload() override;
- /**
- * @copydoc ScriptLibrary::destroy
- */
- void destroy() override;
- private:
- bool mScriptAssembliesLoaded;
- };
- }
|