PlatformWeb.cpp 566 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  3. // LICENSE: Atomic Game Engine Editor and Tools EULA
  4. // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
  5. // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
  6. //
  7. #include "../Build/BuildWeb.h"
  8. #include "PlatformWeb.h"
  9. namespace ToolCore
  10. {
  11. PlatformWeb::PlatformWeb(Context* context) : Platform(context)
  12. {
  13. }
  14. PlatformWeb::~PlatformWeb()
  15. {
  16. }
  17. BuildBase* PlatformWeb::NewBuild(Project *project)
  18. {
  19. return new BuildWeb(context_, project);
  20. }
  21. }