#!/usr/bin/python3

from objectOriented_people import *
        
c1 = person('Bob', 10, 10, 10)
c1.print()

c2 = person('Alice', 9, 8, 7)
c2.print()
c2.attacked(c1.attack)
c2.print()

c3 = wizard('Joe')
c3.print()

# create your people


# menu and turns and stuff - mostly calling people methods