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

12 lines
No EOL
353 B
C#

using PhoenixLib.Events;
using WingsEmu.Plugins.GameEvents.DataHolder;
namespace WingsEmu.Plugins.GameEvents.Event.InstantBattle
{
public abstract class InstantBattleEvent : IAsyncEvent
{
protected InstantBattleEvent(InstantBattleInstance instance) => Instance = instance;
public InstantBattleInstance Instance { get; }
}
}