comparison components/equipable.py @ 76:4cf150131139

Removed image field from the equipable component.
author KarstenBock@gmx.net
date Fri, 23 Sep 2011 12:58:32 +0200
parents 9e03f7816061
children 939984cff702
comparison
equal deleted inserted replaced
75:9e03f7816061 76:4cf150131139
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)