Files
qbtmud/Lantean.QBTMud/EventHandlers/EventHandlers.cs
2024-11-01 22:04:10 +00:00

9 lines
240 B
C#

using Microsoft.AspNetCore.Components;
namespace Lantean.QBTMud
{
[EventHandler("onlongpress", typeof(LongPressEventArgs), enableStopPropagation: true, enablePreventDefault: true)]
public static class EventHandlers
{
}
}