If I setup a main character type
Then extend it with warrior and wizard
what if a wizard wants to change classes into a warrior?
also is there a way of printing the name of the type?
like for example printing the name "Warrior" or "Wizard" from the type name. (Without putting in a field called 'character type' into the type)
type character end type
Then extend it with warrior and wizard
type warrior extends character end type type wizard extends character end type
what if a wizard wants to change classes into a warrior?
also is there a way of printing the name of the type?
like for example printing the name "Warrior" or "Wizard" from the type name. (Without putting in a field called 'character type' into the type)