WuhuIslandTesting/Library/PackageCache/com.unity.shadergraph@8148.12.1-8/Editor/Generation/GraphCode.cs

13 lines
324 B
C#
Raw Normal View History

2025-01-07 02:06:59 +01:00
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;
}
}