5 lines
120 B
Python
5 lines
120 B
Python
|
from piece import Piece
|
||
|
|
||
|
class Queen(Piece):
|
||
|
def __init__(self, color):
|
||
|
super().__init__("queen", color)
|