diff options
Diffstat (limited to 'Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/PackageTools/UniqueComponentAttribute.cs')
-rw-r--r-- | Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/PackageTools/UniqueComponentAttribute.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/PackageTools/UniqueComponentAttribute.cs b/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/PackageTools/UniqueComponentAttribute.cs new file mode 100644 index 0000000..68edb39 --- /dev/null +++ b/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/PackageTools/UniqueComponentAttribute.cs @@ -0,0 +1,6 @@ +namespace Pathfinding { + [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple = true)] + public class UniqueComponentAttribute : System.Attribute { + public string tag; + } +} |