Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
SolutionBuilder.hpp
1#pragma once
2
3#include <vector>
4#include <string>
5
6#include "CSharpProjectMetaData.hpp"
7
8namespace Grindstone::Editor::ScriptBuilder {
9 void CreateSolutionFile(const std::filesystem::path& slnPath, const std::vector<std::filesystem::path>& projects);
10}