Partial class for the GraphCompiler compile result. Adds a Dictionary named VoidFunctionLocals mapping string to VoidFunctionInfo and initializes it.
namespace ShaderGraphPlus;
public sealed partial class GraphCompiler
{
private partial class CompileResult
{
public Dictionary<string, VoidFunctionInfo> VoidFunctionLocals { get; private set; } = new();
}
}