This repository has been archived on 2025-09-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
XericLibrary-OLD/Runtime/CustomDrawer/ReName.cs

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;
}
}
}