// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "util/DawnTool.hpp" #include "util/File.hpp" #include "parse/VnSceneParseEvent.hpp" #include "parse/VnSceneParseHeader.hpp" namespace Dawn { class VnSceneGen : public DawnTool { protected: public: int32_t start() override; }; }