Adds some doc comments
This commit is contained in:
@@ -1,8 +1,18 @@
|
||||
namespace PkmnLib.Dynamic.AI;
|
||||
|
||||
/// <summary>
|
||||
/// Logging implementation for AI
|
||||
/// </summary>
|
||||
public static class AILogging
|
||||
{
|
||||
/// <summary>
|
||||
/// The actual function called by the logging.
|
||||
/// </summary>
|
||||
public static Action<string> LogHandler { get; set; } = _ => { };
|
||||
|
||||
/// <summary>
|
||||
/// Forwarding function.
|
||||
/// </summary>
|
||||
/// <param name="message"></param>
|
||||
public static void LogInformation(string message) => LogHandler(message);
|
||||
}
|
||||
Reference in New Issue
Block a user