Mercurial > parpg-core
diff src/parpg/behaviours/player.py @ 82:7cb53edfb95f
Renamed BaseBehaviour to MovingAgentBehaviour
author | KarstenBock@gmx.net |
---|---|
date | Fri, 09 Sep 2011 15:05:23 +0200 |
parents | c3350fc9cd45 |
children | ecac92680bef |
line wrap: on
line diff
--- a/src/parpg/behaviours/player.py Thu Sep 08 18:56:10 2011 +0200 +++ b/src/parpg/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