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

12 lines
No EOL
281 B
C#

using PhoenixLib.Events;
using WingsEmu.Game.GameEvent;
namespace WingsEmu.Plugins.GameEvents.Event.Global
{
public abstract class GameEvent : IAsyncEvent
{
protected GameEvent(GameEventType type) => Type = type;
public GameEventType Type { get; }
}
}