diff behaviours/player.py @ 55:8b1ad2d342d8

Renamed BaseBehaviour to MovingAgentBehaviour
author KarstenBock@gmx.net
date Fri, 09 Sep 2011 15:05:23 +0200
parents 1bdadb768bcf
children 57f1cff9a75d
line wrap: on
line diff
--- a/behaviours/player.py	Thu Sep 08 18:56:10 2011 +0200
+++ b/behaviours/player.py	Fri Sep 09 15:05:23 2011 +0200
@@ -13,10 +13,10 @@
 #   You should have received a copy of the GNU General Public License
 #   along with PARPG.  If not, see <http://www.gnu.org/licenses/>.
 
-import base
-from base import BaseBehaviour
+import moving
+from moving import MovingAgentBehaviour
 
-class PlayerBehaviour (BaseBehaviour):
+class PlayerBehaviour (MovingAgentBehaviour):
     def __init__(self, parent=None):
         super(PlayerBehaviour, self).__init__()        
         self.parent = parent