mathe/Library/PackageCache/com.unity.shadergraph@14.0.8/Editor/Generation/GraphCode.cs
2024-09-20 20:30:10 +02:00

13 lines
324 B
C#

using System;
using System.Collections.Generic;
namespace UnityEditor.ShaderGraph.Internal
{
public struct GraphCode
{
public string code { get; internal set; }
public ShaderGraphRequirements requirements { get; internal set; }
public IEnumerable<AbstractShaderProperty> properties;
}
}