// 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 "VNSceneParser.hpp" #include "util/File.hpp" namespace Dawn { class VNSceneTool : public DawnTool { protected: std::vector getRequiredFlags() override; std::map getOptionalFlags() override; public: int32_t start(); }; }