from characters import *

hero = Player("Bohater")
goblin = Goblin()
orc = Orc()

hero.fight(goblin)
hero.fight(orc)