This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
using JetBrains.Annotations;
|
||||
|
||||
namespace PkmnLib.Dynamic.Events;
|
||||
|
||||
/// <summary>
|
||||
|
||||
18
PkmnLib.Dynamic/Events/MoveInvulnerableEvent.cs
Normal file
18
PkmnLib.Dynamic/Events/MoveInvulnerableEvent.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user