| 123456789101112131415161718192021222324252627282930 |
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // Please see LICENSE.md in repository root for license information
- // https://github.com/AtomicGameEngine/AtomicGameEngine
- #pragma once
- #include "BuildBase.h"
- namespace ToolCore
- {
- class BuildWeb : public BuildBase
- {
- OBJECT(BuildWeb);
- public:
- BuildWeb(Context* context);
- virtual ~BuildWeb();
- void Build(const String& buildPath);
- protected:
- void Initialize();
- };
- }
|