PkmnLib.NET/PkmnLib.Dynamic/Events/DisplaySpeciesChangeEvent.cs
Deukhoofd 1579d46671
All checks were successful
Build / Build (push) Successful in 49s
More abilities
2025-06-09 15:24:37 +02:00

21 lines
504 B
C#

using PkmnLib.Dynamic.Events;
using PkmnLib.Static.Species;
namespace PkmnLib.Dynamic.Models;
public class DisplaySpeciesChangeEvent : IEventData
{
public IPokemon Pokemon { get; }
public ISpecies? Species { get; }
public IForm? Form { get; }
public DisplaySpeciesChangeEvent(IPokemon pokemon, ISpecies? species, IForm? form)
{
Pokemon = pokemon;
Species = species;
Form = form;
}
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}