Szachy/king.py
2023-06-12 23:48:36 +02:00

4 lines
116 B
Python

from piece import Piece
class King(Piece):
def __init__(self, color):
super().__init__("king", color)