16 lines
313 B
C#
16 lines
313 B
C#
|
using PkmnLib.Dynamic.Models;
|
||
|
|
||
|
namespace PkmnLib.Dynamic.Events;
|
||
|
|
||
|
public class FaintEvent : IEventData
|
||
|
{
|
||
|
public FaintEvent(IPokemon pokemon)
|
||
|
{
|
||
|
Pokemon = pokemon;
|
||
|
}
|
||
|
|
||
|
public IPokemon Pokemon { get; init; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public EventBatchId BatchId { get; init; } = new();
|
||
|
}
|