PkmnLib.NET/PkmnLib.Dynamic/Events/FaintEvent.cs

16 lines
313 B
C#
Raw Normal View History

2024-07-28 12:00:26 +00:00
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();
}