diff components/__init__.py @ 87:aed2e094e0c7

Changed way of setting the possible components of the world.
author KarstenBock@gmx.net
date Sat, 24 Sep 2011 16:48:06 +0200
parents a9cc5559ec2a
children 4a8a0cd7f79a
line wrap: on
line diff
--- a/components/__init__.py	Sat Sep 24 15:48:24 2011 +0200
+++ b/components/__init__.py	Sat Sep 24 16:48:06 2011 +0200
@@ -9,4 +9,19 @@
 from change_map import ChangeMap
 from equipable import Equipable
 from equip import Equip
-from general import General
\ No newline at end of file
+from general import General
+
+components = {
+        "general": General(),
+        "characterstats": CharacterStatistics(),
+        "containable": Containable(),
+        "container": Container(),
+        "description": Description(),
+        "dialogue": Dialogue(),
+        "fifeagent": FifeAgent(),
+        "lockable": Lockable(),
+        "usable": Usable(),
+        "change_map": ChangeMap(),
+        "equipable": Equipable(),
+        "equip": Equip(),
+    }
\ No newline at end of file