OldBlueWater/BlueWater/Assets/AstarPathfindingProject/PackageTools/UniqueComponentAttribute.cs

7 lines
188 B
C#
Raw Normal View History

2023-08-01 06:49:57 +00:00
namespace Pathfinding {
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = true)]
public class UniqueComponentAttribute : System.Attribute {
public string tag;
}
}