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