Initial work on implementing Pokemon

This commit is contained in:
2024-07-28 14:00:26 +02:00
parent 3d5fb1a818
commit 554e1cf2cd
15 changed files with 603 additions and 30 deletions

View File

@@ -0,0 +1,16 @@
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();
}