PkmnLib.NET/PkmnLib.Dynamic/Events/MoveMissEvent.cs

23 lines
520 B
C#
Raw Normal View History

2024-08-10 09:18:10 +00:00
using PkmnLib.Dynamic.Models;
namespace PkmnLib.Dynamic.Events;
/// <summary>
/// Triggered when a move misses.
/// </summary>
public class MoveMissEvent : IEventData
{
/// <inheritdoc cref="MoveMissEvent"/>
public MoveMissEvent(IExecutingMove executingMove)
{
ExecutingMove = executingMove;
}
/// <summary>
/// Data about the move that missed.
/// </summary>
public IExecutingMove ExecutingMove { get; }
2025-03-02 16:19:57 +00:00
2024-08-10 09:18:10 +00:00
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}