| 12345678910111213141516171819202122232425 |
- #include "../Build/BuildWeb.h"
- #include "PlatformIOS.h"
- namespace ToolCore
- {
- PlatformIOS::PlatformIOS(Context* context) : Platform(context)
- {
- }
- PlatformIOS::~PlatformIOS()
- {
- }
- BuildBase* PlatformIOS::NewBuild(Project *project)
- {
- return 0;
- }
- }
|