| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // Please see LICENSE.md in repository root for license information
- // https://github.com/AtomicGameEngine/AtomicGameEngine
- #include <Atomic/Engine/Engine.h>
- #include <ToolCore/ToolSystem.h>
- #include <ToolCore/ToolEnvironment.h>
- #include "AEPlayerApp.h"
- using namespace ToolCore;
- namespace AtomicEditor
- {
- AEPlayerApp::AEPlayerApp(Context* context) :
- Application(context)
- {
- }
- void AEPlayerApp::Start()
- {
- }
- void AEPlayerApp::Setup()
- {
- }
- void AEPlayerApp::Stop()
- {
- }
- }
|