PkmnLib.NET/PkmnLib.Dynamic/Events/SpeciesChangeEvent.cs

21 lines
486 B
C#
Raw Normal View History

2024-09-03 08:15:48 +00:00
using PkmnLib.Dynamic.Models;
using PkmnLib.Static.Species;
namespace PkmnLib.Dynamic.Events;
public class SpeciesChangeEvent : IEventData
{
public IPokemon Pokemon { get; }
public ISpecies Species { get; }
public IForm Form { get; }
public SpeciesChangeEvent(IPokemon pokemon, ISpecies species, IForm form)
{
Pokemon = pokemon;
Species = species;
Form = form;
}
2025-03-02 16:19:57 +00:00
2024-09-03 08:15:48 +00:00
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}