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

14 lines
253 B
Python

from jednostka import Jednostka
class Kusznik(Jednostka):
def __init__(self):
super().__init__(80, 15, 2, 2)
def __str__(self):
return 'K'
def wyswietl_stan(self):
print('Kusznik')
super().wyswietl_stan()