ProjectDDD/Assets/External/EasyGridBuilder Pro/Scripts/Utilities/Internal/RenameAttribute.cs
2025-07-07 19:25:56 +09:00

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