PkmnLib.NET/PkmnLib.Dynamic/Events/MoveInvulnerableEvent.cs
Deukhoofd 2533512eda
All checks were successful
Build / Build (push) Successful in 51s
Slight cleanup, do some TODOs
2025-06-22 10:42:25 +02:00

18 lines
430 B
C#

using PkmnLib.Dynamic.Models;
namespace PkmnLib.Dynamic.Events;
public class MoveInvulnerableEvent : IEventData
{
public IExecutingMove ExecutingMove { get; }
public IPokemon Target { get; }
public MoveInvulnerableEvent(IExecutingMove executingMove, IPokemon target)
{
ExecutingMove = executingMove;
Target = target;
}
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}