Szachy/knight.py
2023-06-08 21:37:15 +02:00

5 lines
147 B
Python

from piece import Piece
from square import Square
class Knight(Piece):
def __init__(self, color):
super().__init__("knight", color)