BuildWeb.h 641 B

12345678910111213141516171819202122232425262728293031323334353637
  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. #pragma once
  8. #include "BuildBase.h"
  9. namespace ToolCore
  10. {
  11. class Project;
  12. class BuildWeb : public BuildBase
  13. {
  14. OBJECT(BuildWeb);
  15. public:
  16. BuildWeb(Context* context, Project* project);
  17. virtual ~BuildWeb();
  18. void Build(const String& buildPath);
  19. String GetBuildSubfolder() { return "Web-Build"; }
  20. protected:
  21. void Initialize();
  22. };
  23. }