AEPlayerApp.cpp 556 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  2. // Please see LICENSE.md in repository root for license information
  3. // https://github.com/AtomicGameEngine/AtomicGameEngine
  4. #include <Atomic/Engine/Engine.h>
  5. #include <ToolCore/ToolSystem.h>
  6. #include <ToolCore/ToolEnvironment.h>
  7. #include "AEPlayerApp.h"
  8. using namespace ToolCore;
  9. namespace AtomicEditor
  10. {
  11. AEPlayerApp::AEPlayerApp(Context* context) :
  12. Application(context)
  13. {
  14. }
  15. void AEPlayerApp::Start()
  16. {
  17. }
  18. void AEPlayerApp::Setup()
  19. {
  20. }
  21. void AEPlayerApp::Stop()
  22. {
  23. }
  24. }