10 lines
167 B
Python
10 lines
167 B
Python
|
from jednostka import Jednostka
|
||
|
|
||
|
|
||
|
class Lucznik(Jednostka):
|
||
|
def __init__(self):
|
||
|
super().__init__( 60, 10, 3, 9)
|
||
|
|
||
|
def __str__(self):
|
||
|
return 'L'
|