5 lines
122 B
Python
5 lines
122 B
Python
from piece import Piece
|
|
|
|
class Bishop(Piece):
|
|
def __init__(self, color):
|
|
super().__init__("bishop", color) |