Mercurial > parpg-core
diff src/parpg/behaviours/__init__.py @ 83:9f8faf6e974d
Added BaseBehaviour. Moved methods from MovingAgentBehaviour to BaseBehaviour.
author | KarstenBock@gmx.net |
---|---|
date | Fri, 09 Sep 2011 15:18:17 +0200 |
parents | 7cb53edfb95f |
children | ecac92680bef |
line wrap: on
line diff
--- a/src/parpg/behaviours/__init__.py Fri Sep 09 15:05:23 2011 +0200 +++ b/src/parpg/behaviours/__init__.py Fri Sep 09 15:18:17 2011 +0200 @@ -13,6 +13,7 @@ # 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 MovingAgentBehaviour as Moving +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