10 lines
166 B
Python
10 lines
166 B
Python
from jednostka import Jednostka
|
|
|
|
|
|
class Kusznik(Jednostka):
|
|
def __init__(self):
|
|
super().__init__(80, 15, 2, 5)
|
|
|
|
def __str__(self):
|
|
return 'K'
|