PlatformIOS.cpp 257 B

12345678910111213141516171819202122232425
  1. #include "../Build/BuildWeb.h"
  2. #include "PlatformIOS.h"
  3. namespace ToolCore
  4. {
  5. PlatformIOS::PlatformIOS(Context* context) : Platform(context)
  6. {
  7. }
  8. PlatformIOS::~PlatformIOS()
  9. {
  10. }
  11. BuildBase* PlatformIOS::NewBuild(Project *project)
  12. {
  13. return 0;
  14. }
  15. }