PlatformWindows.cpp 349 B

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