18 lines
319 B
C#
18 lines
319 B
C#
|
|
// Cristian Pop - https://boxophobic.com/
|
|||
|
|
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace Boxophobic.StyledGUI
|
|||
|
|
{
|
|||
|
|
public class StyledDisplay : PropertyAttribute
|
|||
|
|
{
|
|||
|
|
public string displayName = "";
|
|||
|
|
|
|||
|
|
public StyledDisplay(string displayName)
|
|||
|
|
{
|
|||
|
|
this.displayName = displayName;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|