14 lines
271 B
Python
14 lines
271 B
Python
from jednostka import Jednostka
|
|
|
|
|
|
class Lucznik(Jednostka):
|
|
def __init__(self, imie):
|
|
super().__init__(60, 10, 3, 3, imie)
|
|
self.nazwa = 'Lucznik'
|
|
|
|
def __str__(self):
|
|
return 'L'
|
|
|
|
def wyswietl_stan(self):
|
|
super().wyswietl_stan()
|