comparison world.py @ 86:a9cc5559ec2a

Move the identifier field from the FifeAgent component to the new General component. Added General Entity.
author KarstenBock@gmx.net
date Sat, 24 Sep 2011 15:48:24 +0200
parents 8915ff6183b0
children aed2e094e0c7
comparison
equal deleted inserted replaced
85:04af237dde10 86:a9cc5559ec2a
10 FifeMode.__init__(self) 10 FifeMode.__init__(self)
11 BaseWorld.__init__(self) 11 BaseWorld.__init__(self)
12 12
13 def configure(self): 13 def configure(self):
14 """Configure the game world's components, systems and renderers""" 14 """Configure the game world's components, systems and renderers"""
15 self.components.general = components.General()
15 self.components.characterstats = components.CharacterStatistics() 16 self.components.characterstats = components.CharacterStatistics()
16 self.components.containable = components.Containable() 17 self.components.containable = components.Containable()
17 self.components.container = components.Container() 18 self.components.container = components.Container()
18 self.components.description = components.Description() 19 self.components.description = components.Description()
19 self.components.dialogue = components.Dialogue() 20 self.components.dialogue = components.Dialogue()