PlatformMac.cpp 317 B

123456789101112131415161718192021222324
  1. #include "../Project/Project.h"
  2. #include "../Build/BuildMac.h"
  3. #include "PlatformMac.h"
  4. namespace ToolCore
  5. {
  6. PlatformMac::PlatformMac(Context* context) : Platform(context)
  7. {
  8. }
  9. PlatformMac::~PlatformMac()
  10. {
  11. }
  12. BuildBase* PlatformMac::NewBuild(Project *project)
  13. {
  14. return new BuildMac(context_, project);
  15. }
  16. }