Files
dartchess/lib/dartchess.dart
T
Vincent Velociter 95ff91e03f Wip on removing Box
2024-08-02 09:24:20 +02:00

16 lines
401 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/square_set.dart';
export 'src/attacks.dart';
export 'src/board.dart';
export 'src/castles.dart';
export 'src/setup.dart';
export 'src/position.dart';
export 'src/debug.dart';
export 'src/pgn.dart';