This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |