| 123456789101112131415161718192021222324252627282930313233343536373839 |
- #pragma once
- #include "AEEditorCommon.h"
- using namespace Atomic;
- namespace Atomic
- {
- class JSVM;
- }
- namespace AtomicEditor
- {
- class AEEditorApp : public AEEditorCommon
- {
- OBJECT(AEEditorApp);
- public:
- /// Construct.
- AEEditorApp(Context* context);
- /// Setup before engine initialization. Verify that a script file has been specified.
- virtual void Setup();
- /// Setup after engine initialization. Load the script and execute its start function.
- virtual void Start();
- /// Cleanup after the main loop. Run the script's stop function if it exists.
- virtual void Stop();
- private:
- void HandleExitRequested(StringHash eventType, VariantMap& eventData);
- void HandleJSError(StringHash eventType, VariantMap& eventData);
- };
- }
|