Mercurial > parpg-source
comparison behaviours/__init__.py @ 56:3f6299f975fe
Added BaseBehaviour. Moved methods from MovingAgentBehaviour to BaseBehaviour.
author | KarstenBock@gmx.net |
---|---|
date | Fri, 09 Sep 2011 15:18:17 +0200 |
parents | 8b1ad2d342d8 |
children | 57f1cff9a75d |
comparison
equal
deleted
inserted
replaced
55:8b1ad2d342d8 | 56:3f6299f975fe |
---|---|
11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
12 | 12 |
13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
14 # along with PARPG. If not, see <http://www.gnu.org/licenses/>. | 14 # along with PARPG. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 |
16 from base import MovingAgentBehaviour as Moving | 16 from base import BaseBehaviour as Base |
17 from moving import MovingAgentBehaviour as Moving | |
17 from npc import NPCBehaviour as NonPlayer | 18 from npc import NPCBehaviour as NonPlayer |
18 from player import PlayerBehaviour as Player | 19 from player import PlayerBehaviour as Player |