PkmnLib.NET/PkmnLib.Dynamic/Events/CaptureAttemptEvent.cs

19 lines
441 B
C#
Raw Normal View History

2025-01-10 10:58:23 +00:00
using PkmnLib.Dynamic.Libraries;
using PkmnLib.Dynamic.Models;
namespace PkmnLib.Dynamic.Events;
public class CaptureAttemptEvent : IEventData
{
public CaptureAttemptEvent(IPokemon target, CaptureResult result)
{
Target = target;
Result = result;
}
public IPokemon Target { get; init; }
public CaptureResult Result { get; init; }
2025-03-02 16:19:57 +00:00
2025-01-10 10:58:23 +00:00
/// <inheritdoc />
public EventBatchId BatchId { get; init; }
}