projekt_gra_turowa/piechur.py
2024-12-11 15:00:42 +01:00

14 lines
255 B
Python

from jednostka import Jednostka
class Piechur(Jednostka):
def __init__(self):
super().__init__(80, 15, 1, 1.5)
def __str__(self):
return 'P'
def wyswietl_stan(self):
print('Piechur')
super().wyswietl_stan()