MisaMinoNET

A .NET wrapper for misakamm's MisaMino, a battle Tetris AI


Keywords
tetris, bot, ai
License
Other
Install
Install-Package MisaMinoNET -Version 1.9.3

Documentation

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(...);