projekt_gra_turowa/kusznik.py

14 lines
253 B
Python
Raw Normal View History

2024-12-09 19:29:11 +01:00
from jednostka import Jednostka
class Kusznik(Jednostka):
def __init__(self):
super().__init__(80, 15, 2, 5)
def __str__(self):
return 'K'
2024-12-09 19:59:28 +01:00
def wyswietl_stan(self):
print('Kusznik')
super().wyswietl_stan()