Szachy/rook.py

5 lines
118 B
Python
Raw Normal View History

2023-06-08 16:02:55 +02:00
from piece import Piece
class Rook(Piece):
def __init__(self, color):
super().__init__("rook", color)