19 lines
330 B
C#
19 lines
330 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
namespace XericLibrary.Runtime.CustomDrawer
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public class ReNameAttribute : PropertyAttribute
|
|
{
|
|
public string Name;
|
|
public ReNameAttribute(string name)
|
|
{
|
|
this.Name = name;
|
|
}
|
|
}
|
|
}
|