5 lines
118 B
Python
5 lines
118 B
Python
|
from piece import Piece
|
||
|
|
||
|
class Rook(Piece):
|
||
|
def __init__(self, color):
|
||
|
super().__init__("rook", color)
|