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