# HG changeset patch # User KarstenBock@gmx.net # Date 1315221318 -7200 # Node ID b60461cb84646ecec87b402b8acc929569f39cdf # Parent 4311a0a5378c479c92098c82ace9e15a78566330 Added Aliases for the behaviours in the behaviours package __init__.py diff -r 4311a0a5378c -r b60461cb8464 src/parpg/behaviours/__init__.py --- a/src/parpg/behaviours/__init__.py Mon Sep 05 13:02:05 2011 +0200 +++ b/src/parpg/behaviours/__init__.py Mon Sep 05 13:15:18 2011 +0200 @@ -13,6 +13,6 @@ # You should have received a copy of the GNU General Public License # along with PARPG. If not, see . -from base import BaseBehaviour -from npc import NPCBehaviour -from player import PlayerBehaviour \ No newline at end of file +from base import BaseBehaviour as Base +from npc import NPCBehaviour as NonPlayer +from player import PlayerBehaviour as Player \ No newline at end of file