mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-08 18:47:34 +00:00
15 lines
244 B
C#
15 lines
244 B
C#
using System.Collections.Generic;
|
|
|
|
namespace stonevox
|
|
{
|
|
public class GUIData
|
|
{
|
|
public List<WidgetData> widgets { get; set; }
|
|
|
|
public GUIData()
|
|
{
|
|
widgets = new List<WidgetData>();
|
|
}
|
|
}
|
|
}
|