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