Mercurial > parpg-source
diff behaviours/__init__.py @ 103:57f1cff9a75d
Added animation queue and method the base behaviour class.
author | KarstenBock@gmx.net |
---|---|
date | Fri, 30 Sep 2011 14:04:29 +0200 |
parents | 3f6299f975fe |
children |
line wrap: on
line diff
--- a/behaviours/__init__.py Thu Sep 29 18:15:12 2011 +0200 +++ b/behaviours/__init__.py Fri Sep 30 14:04:29 2011 +0200 @@ -1,19 +1,19 @@ -# This file is part of PARPG. - -# PARPG is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. - -# PARPG is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with PARPG. If not, see <http://www.gnu.org/licenses/>. - -from base import BaseBehaviour as Base -from moving import MovingAgentBehaviour as Moving -from npc import NPCBehaviour as NonPlayer +# This file is part of PARPG. + +# PARPG is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# PARPG is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with PARPG. If not, see <http://www.gnu.org/licenses/>. + +from base import BaseBehaviour as Base +from moving import MovingAgentBehaviour as Moving +from npc import NPCBehaviour as NonPlayer from player import PlayerBehaviour as Player \ No newline at end of file