12 lines
No EOL
419 B
C#
12 lines
No EOL
419 B
C#
using WingsEmu.Plugins.GameEvents.Configuration.InstantBattle;
|
|
using WingsEmu.Plugins.GameEvents.DataHolder;
|
|
|
|
namespace WingsEmu.Plugins.GameEvents.Event.InstantBattle
|
|
{
|
|
public class InstantBattleDropEvent : InstantBattleEvent
|
|
{
|
|
public InstantBattleDropEvent(InstantBattleInstance instance, InstantBattleWave wave) : base(instance) => Wave = wave;
|
|
|
|
public InstantBattleWave Wave { get; }
|
|
}
|
|
} |