Mercurial > parpg-source
annotate components/__init__.py @ 51:d3a9caba067b
Modifications to make talking with npcs possible again. Special actions won't work yet though.
author | KarstenBock@gmx.net |
---|---|
date | Thu, 08 Sep 2011 15:18:39 +0200 |
parents | 66a06de1bddc |
children | e2004c9549d7 |
rev | line source |
---|---|
40
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
1 from Behavior import Behavior |
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
2 from CharacterStatistics import CharacterStatistics |
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
3 from containable import Containable |
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
4 from container import Container |
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
5 from description import Description |
42 | 6 from dialogue import Dialogue |
40
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
7 from fifeagent import FifeAgent |
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
8 from lockable import Lockable |
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
9 from usable import Usable |
2e3ab06a2f47
Made the component classes available in the __ini__.py file of the components package
KarstenBock@gmx.net
parents:
12
diff
changeset
|
10 |