projekt_gra_turowa/piechur.py

10 lines
166 B
Python
Raw Normal View History

2024-12-09 19:29:11 +01:00
from jednostka import Jednostka
class Piechur(Jednostka):
def __init__(self):
super().__init__(80, 15, 1, 7)
def __str__(self):
return 'P'