Files
SoulliesOfficial ef7b479712 initial
2025-11-25 08:19:33 -05:00

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