annotate src/parpg/components/__init__.py @ 72:9aebbf4e02f7

Added equip component, wich stores the equipment data of an entity.
author KarstenBock@gmx.net
date Wed, 07 Sep 2011 13:24:02 +0200
parents 2265d69ba57c
children b764229a0fad
rev   line source
65
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
1 from Behavior import Behavior
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
2 from CharacterStatistics import CharacterStatistics
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
3 from containable import Containable
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
4 from container import Container
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
5 from description import Description
67
2265d69ba57c Renamed dialog to dialogue
KarstenBock@gmx.net
parents: 65
diff changeset
6 from dialogue import Dialogue
65
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
7 from fifeagent import FifeAgent
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
8 from lockable import Lockable
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
9 from usable import Usable
765cb0c16f20 Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents: 34
diff changeset
10