Skip to content

Instantly share code, notes, and snippets.

import 'position.dart';
import 'piece_type.dart';
import '../entities/chess_piece.dart';
/// Value Object đại diện cho một nước đi trong cờ vua
/// Chứa đầy đủ thông tin về nước đi và validation
class Move {
final Position from;
final Position to;
final ChessPiece? capturedPiece;