Mercurial > parpg-core
annotate src/parpg/behaviours/__init__.py @ 170:371b17bc9113
Added ReplaceItemAction, to dialogueactions, which replaces a single item in the players inventory.
author | KarstenBock@gmx.net |
---|---|
date | Sun, 09 Oct 2011 14:39:02 +0200 |
parents | ecac92680bef |
children |
rev | line source |
---|---|
133
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
1 # This file is part of PARPG. |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
2 |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
3 # PARPG is free software: you can redistribute it and/or modify |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
4 # it under the terms of the GNU General Public License as published by |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
5 # the Free Software Foundation, either version 3 of the License, or |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
6 # (at your option) any later version. |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
7 |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
8 # PARPG is distributed in the hope that it will be useful, |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
11 # GNU General Public License for more details. |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
12 |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
13 # You should have received a copy of the GNU General Public License |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
14 # along with PARPG. If not, see <http://www.gnu.org/licenses/>. |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
15 |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
16 from base import BaseBehaviour as Base |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
17 from moving import MovingAgentBehaviour as Moving |
ecac92680bef
Added animation queue and method the base behaviour class.
KarstenBock@gmx.net
parents:
83
diff
changeset
|
18 from npc import NPCBehaviour as NonPlayer |
56
b60461cb8464
Added Aliases for the behaviours in the behaviours package __init__.py
KarstenBock@gmx.net
parents:
55
diff
changeset
|
19 from player import PlayerBehaviour as Player |