This commit is contained in:
cutsweettea
2025-10-29 10:36:33 -04:00
parent 45d60d1657
commit bbd55f48a0
10 changed files with 147 additions and 32 deletions

6
chess/knight.py Normal file
View File

@@ -0,0 +1,6 @@
from chess_piece import ChessPiece
from player import Player
class Knight(ChessPiece):
def __init__(self, piece_color: Player):
super().__init__(piece_color)