Net-Game/Library/PackageCache/com.unity.shadergraph@cdef3258c742/Editor/Generation/GraphCode.cs
2025-03-28 08:33:16 -04: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;
}
}