Files
dartchess/lib/dartchess.dart
T
Vincent Velociter 5bd1829226 Tweaks
2023-06-20 18:14:03 +02:00

16 lines
408 B
Dart

/// Dart chess library for native platforms.
///
/// All classes are immutable except [PgnNode] and [PgnChildNode].
library dartchess;
export 'src/constants.dart';
export 'src/models.dart';
export 'src/utils.dart' hide Box;
export 'src/square_set.dart';
export 'src/attacks.dart';
export 'src/board.dart';
export 'src/setup.dart';
export 'src/position.dart';
export 'src/debug.dart';
export 'src/pgn.dart';