Files
PkmnLib.NET/PkmnLib.Dynamic/Events/DisplaySpeciesChangeEvent.cs

21 lines
516 B
C#

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