5 lines
106 B
Python
5 lines
106 B
Python
|
from ..interfaces import FightingEntity
|
||
|
|
||
|
class Player(FightingEntity):
|
||
|
maxhealth = 20
|
||
|
strength = 5
|