server-master/srcs/_plugins/WingsEmu.Plugins.GameEvents/Event/Global/GameEventUnlockRegistrationEvent.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
261 B
C#

using WingsEmu.Game.GameEvent;
namespace WingsEmu.Plugins.GameEvents.Event.Global
{
public class GameEventUnlockRegistrationEvent : GameEvent
{
public GameEventUnlockRegistrationEvent(GameEventType type) : base(type)
{
}
}
}