14 lines
272 B (Stored with Git LFS)
C#
14 lines
272 B (Stored with Git LFS)
C#
using UnityEngine;
|
|
|
|
namespace SoulGames.Utilities
|
|
{
|
|
public class RenameAttribute : PropertyAttribute
|
|
{
|
|
public string NewName { get ; private set; }
|
|
public RenameAttribute( string name )
|
|
{
|
|
NewName = name ;
|
|
}
|
|
}
|
|
}
|