using PkmnLib.Dynamic.Models; namespace PkmnLib.Dynamic.Events; /// /// Triggered when a move misses. /// public class MoveMissEvent : IEventData { /// public MoveMissEvent(IExecutingMove executingMove) { ExecutingMove = executingMove; } /// /// Data about the move that missed. /// public IExecutingMove ExecutingMove { get; } /// public EventBatchId BatchId { get; init; } }