| 12345678910111213141516171819202122232425 |
- #pragma once
- #include "Platform.h"
- namespace ToolCore
- {
- class PlatformMac : public Platform
- {
- OBJECT(PlatformMac);
- public:
- PlatformMac(Context* context);
- virtual ~PlatformMac();
- String GetName() { return "MAC"; }
- PlatformID GetPlatformID() { return PLATFORMID_MAC; }
- BuildBase* NewBuild(Project* project);
- };
- }
|