Use PCGRandom instead of System.Random, documentation
This commit is contained in:
@@ -33,8 +33,13 @@ public interface IDynamicLibrary
|
||||
IMiscLibrary MiscLibrary { get; }
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public class DynamicLibraryImpl : IDynamicLibrary
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="DynamicLibraryImpl"/> class, with the given
|
||||
/// plugins and static library.
|
||||
/// </summary>
|
||||
public static IDynamicLibrary Create(IStaticLibrary staticLibrary, IEnumerable<Plugin> plugins)
|
||||
{
|
||||
var registry = new ScriptRegistry();
|
||||
|
||||
@@ -4,6 +4,9 @@ using PkmnLib.Static;
|
||||
|
||||
namespace PkmnLib.Dynamic.Libraries;
|
||||
|
||||
/// <summary>
|
||||
/// Miscellaneous handlings for battles.
|
||||
/// </summary>
|
||||
public interface IMiscLibrary
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user