Platform.cpp 442 B

123456789101112131415161718192021222324
  1. //
  2. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  3. // LICENSE: Atomic Game Engine Editor and Tools EULA
  4. // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
  5. // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
  6. //
  7. #include "Platform.h"
  8. namespace ToolCore
  9. {
  10. Platform::Platform(Context* context) : Object(context),
  11. validLicense_(false)
  12. {
  13. }
  14. Platform::~Platform()
  15. {
  16. }
  17. }