mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-08 14:55:44 +00:00
16 lines
334 B
C#
16 lines
334 B
C#
using System;
|
|
|
|
namespace stonevox
|
|
{
|
|
public class GUIWidgetNameAttribute : Attribute
|
|
{
|
|
private string DisplayeName;
|
|
public string DisplayName { get { return DisplayeName; } }
|
|
|
|
public GUIWidgetNameAttribute(string DisplayName)
|
|
{
|
|
this.DisplayeName = DisplayName;
|
|
}
|
|
}
|
|
}
|