Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/MAFH2/Profile.py
diff options
context:
space:
mode:
authorJustin Lewis <jtl1728@rit.edu>2010-02-18 00:07:09 (GMT)
committer Justin Lewis <jtl1728@rit.edu>2010-02-18 00:07:09 (GMT)
commit7b9eff218df8d045ab432dae899ed92df5922657 (patch)
treec5520ff990b5df219135a26f267caca7c00fc233 /MAFH2/Profile.py
parentbf5ad2bf3ba645ff6b6e810fdb442bd971f84646 (diff)
Lots of changes, animation, and partial battle engine.
Diffstat (limited to 'MAFH2/Profile.py')
-rw-r--r--MAFH2/Profile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/MAFH2/Profile.py b/MAFH2/Profile.py
index 5f28589..5f801c0 100644
--- a/MAFH2/Profile.py
+++ b/MAFH2/Profile.py
@@ -2,6 +2,7 @@ import pygame
from GameEngine import GameEngineElement
from constants import MENU_PATH, NORTH, SOUTH, EAST, WEST, RIGHT, LEFT
+from Hero import Hero
from gettext import gettext as _
@@ -12,6 +13,7 @@ class Profile(GameEngineElement):
self.dungeon_id = "al1.txt"
self.position = (-1, -1)
self.playerFacing=NORTH
+ self.hero = Hero()
# 4 types of stats and difficulties
self.problem_stats = {}