Advertisement
hybrid-dragon

LabelAttribute.cs

Jul 10th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. using UnityEngine;
  2.  
  3. public class LabelAttribute : PropertyAttribute
  4. {
  5.     public readonly string Label;
  6.     public LabelAttribute(string Label) { this.Label = Label; }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement