Add all missing docs

This commit is contained in:
2025-05-03 14:18:12 +02:00
parent 4d5dfd0342
commit 441f5dddaf
40 changed files with 400 additions and 21 deletions

View File

@@ -140,8 +140,14 @@ public interface IExecutingMove : IScriptSource
/// </summary>
IMoveChoice MoveChoice { get; }
/// <summary>
/// Returns all the hits of this move.
/// </summary>
IReadOnlyList<IHitData> Hits { get; }
/// <summary>
/// The battle this move is being executed in.
/// </summary>
IBattle Battle { get; }
}
@@ -189,6 +195,9 @@ public class ExecutingMoveImpl : ScriptSource, IExecutingMove
/// <inheritdoc />
public ScriptContainer Script => MoveChoice.Script;
/// <summary>
/// The volatile scripts that are applicable to this move.
/// </summary>
public IScriptSet Volatile => MoveChoice.Volatile;
/// <inheritdoc />