VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.shadergraph/Editor/Generation/GraphCode.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +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;
}
}