Szachy/pawn.py
Agata Halik 2b7004ad34 initial
2023-06-08 16:02:55 +02:00

5 lines
118 B
Python

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