Szachy/knight.py

5 lines
147 B
Python
Raw Normal View History

2023-06-08 16:02:55 +02:00
from piece import Piece
from square import Square
class Knight(Piece):
def __init__(self, color):
2023-06-08 21:37:15 +02:00
super().__init__("knight", color)