comparison src/parpg/components/equip.py @ 90:0319dcc47603

Added equipable component.
author KarstenBock@gmx.net
date Wed, 21 Sep 2011 15:25:32 +0200
parents 9aebbf4e02f7
children 1bd609af9329
comparison
equal deleted inserted replaced
89:b5619032c521 90:0319dcc47603
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)