Mercurial > parpg-source
comparison behaviours/__init__.py @ 55:8b1ad2d342d8
Renamed BaseBehaviour to MovingAgentBehaviour
author | KarstenBock@gmx.net |
---|---|
date | Fri, 09 Sep 2011 15:05:23 +0200 |
parents | 2b51d0010e1c |
children | 3f6299f975fe |
comparison
equal
deleted
inserted
replaced
54:de09adb7a736 | 55:8b1ad2d342d8 |
---|---|
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 BaseBehaviour as Base | 16 from base import MovingAgentBehaviour as Moving |
17 from npc import NPCBehaviour as NonPlayer | 17 from npc import NPCBehaviour as NonPlayer |
18 from player import PlayerBehaviour as Player | 18 from player import PlayerBehaviour as Player |