namespace PkmnLib.Dynamic.AI;
///
/// Logging implementation for AI
///
public static class AILogging
{
///
/// The actual function called by the logging.
///
public static Action LogHandler { get; set; } = _ => { };
///
/// Forwarding function.
///
///
public static void LogInformation(string message) => LogHandler(message);
}