comparison world.py @ 49:4f9747116061

Removed behaviour component. Behaviour is already stored in the fifeagent component.
author KarstenBock@gmx.net
date Thu, 08 Sep 2011 14:30:01 +0200
parents 66a06de1bddc
children d3a9caba067b
comparison
equal deleted inserted replaced
48:1bdadb768bcf 49:4f9747116061
9 FifeMode.__init__(self) 9 FifeMode.__init__(self)
10 BaseWorld.__init__(self) 10 BaseWorld.__init__(self)
11 11
12 def configure(self): 12 def configure(self):
13 """Configure the game world's components, systems and renderers""" 13 """Configure the game world's components, systems and renderers"""
14 self.components.behaviour = components.Behavior()
15 self.components.characterstats = components.CharacterStatistics() 14 self.components.characterstats = components.CharacterStatistics()
16 self.components.containable = components.Containable() 15 self.components.containable = components.Containable()
17 self.components.container = components.Container() 16 self.components.container = components.Container()
18 self.components.description = components.Description() 17 self.components.description = components.Description()
19 self.components.dialogue = components.Dialogue() 18 self.components.dialogue = components.Dialogue()