14 lines
271 B
Python
14 lines
271 B
Python
from jednostka import Jednostka
|
|
|
|
|
|
class Kusznik(Jednostka):
|
|
def __init__(self, imie):
|
|
super().__init__(80, 15, 2, 2, imie)
|
|
self.nazwa = 'Kusznik'
|
|
|
|
def __str__(self):
|
|
return 'K'
|
|
|
|
def wyswietl_stan(self):
|
|
super().wyswietl_stan()
|