PlatformMac.h 672 B

123456789101112131415161718192021222324252627282930313233
  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. #pragma once
  8. #include "Platform.h"
  9. namespace ToolCore
  10. {
  11. class PlatformMac : public Platform
  12. {
  13. OBJECT(PlatformMac);
  14. public:
  15. PlatformMac(Context* context);
  16. virtual ~PlatformMac();
  17. String GetName() { return "MAC"; }
  18. PlatformID GetPlatformID() { return PLATFORMID_MAC; }
  19. BuildBase* NewBuild(Project* project);
  20. virtual bool GetLicense() { return true; }
  21. };
  22. }