11 lines
178 B
C#
11 lines
178 B
C#
using UnityEngine;
|
|
|
|
public class CNNameAttribute : PropertyAttribute
|
|
{
|
|
public string Name;
|
|
|
|
public CNNameAttribute(string name)
|
|
{
|
|
this.Name = name;
|
|
}
|
|
} |