21 lines
384 B
C#
21 lines
384 B
C#
using UnityEngine;
|
|
|
|
namespace Boxophobic.StyledGUI
|
|
{
|
|
public class StyledTexturePreview : PropertyAttribute
|
|
{
|
|
public string displayName = "";
|
|
|
|
public StyledTexturePreview()
|
|
{
|
|
this.displayName = "";
|
|
}
|
|
|
|
public StyledTexturePreview(string displayName)
|
|
{
|
|
this.displayName = displayName;
|
|
}
|
|
}
|
|
}
|
|
|