Slight cleanup, do some TODOs
All checks were successful
Build / Build (push) Successful in 51s

This commit is contained in:
2025-06-22 10:42:25 +02:00
parent e305cfaef6
commit 2533512eda
114 changed files with 218 additions and 168 deletions

View File

@@ -1,5 +1,3 @@
using JetBrains.Annotations;
namespace PkmnLib.Dynamic.Events;
/// <summary>

View File

@@ -0,0 +1,18 @@
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; }
}