4 lines
116 B
Python
4 lines
116 B
Python
from piece import Piece
|
|
class King(Piece):
|
|
def __init__(self, color):
|
|
super().__init__("king", color) |