PlatformMac.cpp 596 B

123456789101112131415161718192021222324252627282930
  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 "../Project/Project.h"
  8. #include "../Build/BuildMac.h"
  9. #include "PlatformMac.h"
  10. namespace ToolCore
  11. {
  12. PlatformMac::PlatformMac(Context* context) : Platform(context)
  13. {
  14. }
  15. PlatformMac::~PlatformMac()
  16. {
  17. }
  18. BuildBase* PlatformMac::NewBuild(Project *project)
  19. {
  20. return new BuildMac(context_, project);
  21. }
  22. }