flutter_stockfish_plugin/lib/stockfish_state.dart

17 lines
318 B
Dart
Raw Normal View History

2023-10-28 20:46:47 +02:00
// Taken from https://github.com/ArjanAswal/Stockfish/blob/master/lib/src/stockfish_state.dart
/// C++ engine state.
enum StockfishState {
/// Engine has been stopped.
disposed,
/// An error occured (engine could not start).
error,
/// Engine is running.
ready,
/// Engine is starting.
starting,
}