Add all missing docs
This commit is contained in:
@@ -3,15 +3,26 @@ using PkmnLib.Dynamic.Models;
|
||||
|
||||
namespace PkmnLib.Dynamic.Events;
|
||||
|
||||
/// <summary>
|
||||
/// Represents an event that occurs when a Pokémon capture attempt is made.
|
||||
/// </summary>
|
||||
public class CaptureAttemptEvent : IEventData
|
||||
{
|
||||
/// <inheritdoc cref="CaptureAttemptEvent"/>
|
||||
public CaptureAttemptEvent(IPokemon target, CaptureResult result)
|
||||
{
|
||||
Target = target;
|
||||
Result = result;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The Pokémon that is being captured.
|
||||
/// </summary>
|
||||
public IPokemon Target { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// The result of the capture attempt.
|
||||
/// </summary>
|
||||
public CaptureResult Result { get; init; }
|
||||
|
||||
/// <inheritdoc />
|
||||
|
||||
Reference in New Issue
Block a user