VR4Medical/ICI/Library/PackageCache/com.unity.shadergraph@e5d3455aa133/Editor/Generation/GraphCode.cs
2025-07-29 13:45:50 +03: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;
}
}