Getting started with implementing an explicit AI, based on the Essentials one.
All checks were successful
Build / Build (push) Successful in 1m2s
All checks were successful
Build / Build (push) Successful in 1m2s
This commit is contained in:
8
PkmnLib.Dynamic/AI/AILogging.cs
Normal file
8
PkmnLib.Dynamic/AI/AILogging.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace PkmnLib.Dynamic.AI;
|
||||
|
||||
public static class AILogging
|
||||
{
|
||||
public static Action<string> LogHandler { get; set; } = message => { };
|
||||
|
||||
public static void LogInformation(string message) => LogHandler(message);
|
||||
}
|
||||
Reference in New Issue
Block a user