Implements move execution for battle

This commit is contained in:
2024-08-10 11:18:10 +02:00
parent a049dda240
commit 488c717c5a
17 changed files with 433 additions and 14 deletions

View File

@@ -0,0 +1,23 @@
using PkmnLib.Dynamic.Models;
namespace PkmnLib.Dynamic.Events;
/// <summary>
/// Runs when a move is used, before the move is executed.
/// </summary>
public class MoveUseEvent : IEventData
{
/// <summary>
/// The move that is being executed.
/// </summary>
public IExecutingMove ExecutingMove { get; }
/// <inheritdoc cref="MoveUseEvent"/>
public MoveUseEvent(IExecutingMove executingMove)
{
ExecutingMove = executingMove;
}
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}