Files
taptap2024_GJ_chidouren/Assets/AstarPathfindingProject/PackageTools/UniqueComponentAttribute.cs

7 lines
188 B
C#
Raw Normal View History

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