summaryrefslogtreecommitdiff
path: root/Assets/Mountools/Tools/Editor/LabelAttribute.cs
blob: 51302df41f723877806b502924c671886fcbcfb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using UnityEngine;

namespace Mountools.Tools.Editor
{
    public class LabelAttribute : PropertyAttribute
    {
        public string Name { get; }

        public LabelAttribute(string name)
        {
            Name = name;
        }
    }
}