CapersProject/Packages/com.arongranberg.astar/PackageTools/UniqueComponentAttribute.cs

7 lines
188 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
namespace Pathfinding {
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = true)]
public class UniqueComponentAttribute : System.Attribute {
public string tag;
}
}