Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 722 Bytes

File metadata and controls

28 lines (19 loc) · 722 Bytes

MisaMinoNET

NuGet - Download Discord - Join Chat

.NET version of the MisaMino bot (via DLL importing).

Installation and Usage Example

Use MisaMinoNET from NuGet in your project.

using MisaMinoNET;

// Listen for search completion
MisaMino.Finished += ...;

// Start search in the background
MisaMino.FindMove(...);

// Abort search prematurely
MisaMino.Abort();

// Access results of last search
MisaMino.LastSolution;

// Utilize pathfinder
MisaMino.FindPath(...);