projekt_gra_turowa/lucznik.py
2024-12-09 19:29:11 +01:00

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'