Szachy/knight.py

7 lines
156 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:31:33 +02:00
super().__init__("knight", color)
#test