view src/parpg/components/__init__.py @ 117:b10de0310771

Changed way of setting the possible components of the world.
author KarstenBock@gmx.net
date Sat, 24 Sep 2011 16:48:06 +0200
parents 9b5498e3bda0
children 1703dbb4fefb
line wrap: on
line source

from CharacterStatistics import CharacterStatistics
from containable import Containable
from container import Container
from description import Description
from dialogue import Dialogue
from fifeagent import FifeAgent
from lockable import Lockable
from usable import Usable
from change_map import ChangeMap
from equipable import Equipable
from equip import Equip
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(),
    }