Files
ChunilENG/Assets/Plugins/XRLib/Core/Label.cs
정영민 2dd5d814a7 update
2025-02-20 09:59:37 +09:00

17 lines
340 B
C#

using System;
namespace WI
{
[AttributeUsage(AttributeTargets.Field)]
public partial class Label : Attribute
{
public string name;
public Type target;
public Label(Type targetType, string gameObjectName)
{
target = targetType;
name = gameObjectName;
}
}
}