comparison src/parpg/components/equipable.py @ 106:f3ace79da781

Removed image field from the equipable component.
author KarstenBock@gmx.net
date Fri, 23 Sep 2011 12:58:32 +0200
parents 7829eb185d6f
children 3564a46544bc
comparison
equal deleted inserted replaced
105:7829eb185d6f 106:f3ace79da781
17 """ 17 """
18 Component that stores the data for an entity that can be equipped. 18 Component that stores the data for an entity that can be equipped.
19 """ 19 """
20 20
21 def __init__(self): 21 def __init__(self):
22 Component.__init__(self, image=str, possible_slots=list, wearer=object, in_slot=str) 22 Component.__init__(self, possible_slots=list, wearer=object, in_slot=str)