Mercurial > parpg-core
comparison src/parpg/world.py @ 76:4934b62e0e48
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 | 2265d69ba57c |
children | c25c734bd2a7 |
comparison
equal
deleted
inserted
replaced
75:c3350fc9cd45 | 76:4934b62e0e48 |
---|---|
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() |