14 lines
273 B
Python
14 lines
273 B
Python
from jednostka import Jednostka
|
|
|
|
|
|
class Piechur(Jednostka):
|
|
def __init__(self, imie):
|
|
super().__init__(80, 15, 1, 1.5, imie)
|
|
self.nazwa = 'Piechur'
|
|
|
|
def __str__(self):
|
|
return 'P'
|
|
|
|
def wyswietl_stan(self):
|
|
super().wyswietl_stan()
|