Mercurial > parpg-source
diff 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 |
line wrap: on
line diff
--- a/world.py Fri Sep 23 15:09:02 2011 +0200 +++ b/world.py Sat Sep 24 15:48:24 2011 +0200 @@ -12,6 +12,7 @@ def configure(self): """Configure the game world's components, systems and renderers""" + self.components.general = components.General() self.components.characterstats = components.CharacterStatistics() self.components.containable = components.Containable() self.components.container = components.Container()