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