6 lines
168 B
Python
6 lines
168 B
Python
from chess_piece import ChessPiece
|
|
from player import Player
|
|
|
|
class Rook(ChessPiece):
|
|
def __init__(self, piece_color: Player):
|
|
super().__init__(piece_color) |