Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/Main.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/Main.py')
-rwxr-xr-xsrc/Main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Main.py b/src/Main.py
index 7ec27b5..5e9e9be 100755
--- a/src/Main.py
+++ b/src/Main.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from api.Game import CGame
-import game.PresentationState
+from game.PresentationState import CPresentationState
class EdSexualGame():
@@ -12,7 +12,7 @@ class EdSexualGame():
g = CGame()
- ms = game.PresentationState.CPresentationState()
+ ms = CPresentationState()
g.setState(ms)
g.gameLoop()
@@ -20,4 +20,4 @@ class EdSexualGame():
if __name__ == "__main__":
j = EdSexualGame()
- j.main() \ No newline at end of file
+ j.main()