Mercurial > parpg-core
comparison src/parpg/world.py @ 116:9b5498e3bda0
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 | 915190c0cbc8 |
children | b10de0310771 |
comparison
equal
deleted
inserted
replaced
115:a85d58fcd253 | 116:9b5498e3bda0 |
---|---|
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() |