BuildWeb.h 501 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  2. // Please see LICENSE.md in repository root for license information
  3. // https://github.com/AtomicGameEngine/AtomicGameEngine
  4. #pragma once
  5. #include "BuildBase.h"
  6. namespace ToolCore
  7. {
  8. class Project;
  9. class BuildWeb : public BuildBase
  10. {
  11. OBJECT(BuildWeb);
  12. public:
  13. BuildWeb(Context* context, Project* project);
  14. virtual ~BuildWeb();
  15. void Build(const String& buildPath);
  16. protected:
  17. void Initialize();
  18. };
  19. }