Files
CityBuilder/Library/PackageCache/com.unity.shadergraph@052d95cfe62a/Editor/Generation/Attributes/GenerateBlocksAttribute.cs
SHOUTING_PIRATE 1c91215efd initial commit
2025-07-07 20:59:04 +01:00

16 lines
308 B
C#

using System;
namespace UnityEditor.ShaderGraph
{
[AttributeUsage(AttributeTargets.Struct)]
class GenerateBlocksAttribute : Attribute
{
internal string path { get; set; }
public GenerateBlocksAttribute(string path = "")
{
this.path = path;
}
}
}