1234567891011121314151617 |
- namespace UnityEngine.UI
- {
- [System.AttributeUsage(System.AttributeTargets.Class)]
- public class ModifierID : System.Attribute{
- private string name;
-
- public ModifierID(string name){
- this.name = name;
- }
-
- public string Name{
- get{
- return name;
- }
- }
- }
- }
|