Adds some doc comments

This commit is contained in:
2026-07-05 14:04:01 +02:00
parent a649e58826
commit 1ab15110f5
5 changed files with 89 additions and 4 deletions

View File

@@ -3,14 +3,25 @@ using PkmnLib.Static.Moves;
namespace PkmnLib.Dynamic.AI.Explicit;
/// <summary>
/// Container wrapper for a move and its user.
/// </summary>
public class AIMoveState
{
/// <inheritdoc cref="AIMoveState" />
public AIMoveState(IPokemon user, IMoveData move)
{
User = user;
Move = move;
}
/// <summary>
/// The user that's being wrapper
/// </summary>
public IPokemon User { get; }
/// <summary>
/// The move that's being wrapper
/// </summary>
public IMoveData Move { get; }
}