Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
CSharpProjectMetaData.hpp
1#pragma once
2
3#include <string>
4
5namespace Grindstone::Editor::ScriptBuilder {
8 const std::string& name,
9 const std::string& guid
10 ) : assemblyName(name),
11 assemblyGuid(guid) {}
12
13 std::string assemblyName;
14 std::string assemblyGuid;
15 };
16}
Definition CSharpProjectMetaData.hpp:6