BuildWeb.h 467 B

123456789101112131415161718192021222324252627282930
  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 BuildWeb : public BuildBase
  9. {
  10. OBJECT(BuildWeb);
  11. public:
  12. BuildWeb(Context* context);
  13. virtual ~BuildWeb();
  14. void Build(const String& buildPath);
  15. protected:
  16. void Initialize();
  17. };
  18. }