mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-04 08:45:49 +00:00
14 lines
283 B
C#
14 lines
283 B
C#
using System.Collections.Generic;
|
|
|
|
namespace stonevox
|
|
{
|
|
public static class WidgetCommands
|
|
{
|
|
public static Dictionary<string, WidgetEventHandler> handlers = new Dictionary<string, WidgetEventHandler>();
|
|
|
|
static WidgetCommands()
|
|
{
|
|
}
|
|
}
|
|
}
|