12 lines
No EOL
281 B
C#
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; }
|
|
}
|
|
} |