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

@@ -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);
}