Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/states/MenuState.py
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-03-03 04:50:35 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-03-03 04:50:35 (GMT)
commit55496eae56228cf1ddc585d99f925de403c13595 (patch)
tree5d2b0c672659b5565a64e1625007d3d9e441c66e /src/states/MenuState.py
parent2f41140206627ec9ac6bd4e5efd6ad3ffe25f969 (diff)
add Area1Game1 code and images for it
Diffstat (limited to 'src/states/MenuState.py')
-rwxr-xr-xsrc/states/MenuState.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/states/MenuState.py b/src/states/MenuState.py
index 3ca33e3..35074d5 100755
--- a/src/states/MenuState.py
+++ b/src/states/MenuState.py
@@ -10,6 +10,9 @@ import states.CreditsState
from CreditsState import *
import api.Image as Image
+import states.Area1Game1
+from states.Area1Game1 import CArea1Game1
+
import pygame
class CMenuState(CGameState):
@@ -49,8 +52,8 @@ class CMenuState(CGameState):
if self.mButtonPlay.clicked:
print "clicked menu"
#cs = CHelpState()
- cs = CCreditsState()
- CGame().setState(cs)
+ a1g1 = CArea1Game1()
+ CGame().setState(a1g1)
#def render(self):
# CGameState.render(self)