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

@@ -19,10 +19,18 @@ public interface IBattleRandom : IRandom, IDeepCloneable
/// <inheritdoc cref="IBattleRandom"/>
public class BattleRandomImpl : RandomImpl, IBattleRandom
{
/// <inheritdoc cref="BattleRandomImpl"/>
/// <remarks>
/// This constructor is used to instantiate the class when no seed is provided. It uses a time-dependent default seed value.
/// </remarks>
public BattleRandomImpl()
{
}
/// <inheritdoc cref="BattleRandomImpl"/>
/// <remarks>
/// This constructor is used to instantiate the class with a specific seed value.
/// </remarks>
public BattleRandomImpl(int seed) : base(seed)
{
}