comparison components/equip.py @ 63:e5acfeca9bc9

Added equipable component.
author KarstenBock@gmx.net
date Wed, 21 Sep 2011 15:25:32 +0200
parents b8f421f74280
children b73050f98411
comparison
equal deleted inserted replaced
62:bf63da4b27f5 63:e5acfeca9bc9
17 """ 17 """
18 Component that stores the equipment (what is being worn/wieled). 18 Component that stores the equipment (what is being worn/wieled).
19 """ 19 """
20 20
21 def __init__(self): 21 def __init__(self):
22 Component.__init__(self, head=str, body=str, leg=str, feet=str, l_arm=str, r_arm=str) 22 Component.__init__(self, head=object, body=object, leg=object, feet=object, l_arm=object, r_arm=object)