PlatformWeb.cpp 287 B

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