Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/Main.py
blob: 87062e1e58acc0dffe3934a8c0f5926a58a6e0dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- coding: utf-8 -*-

from api.Game import CGame
#import game.MenuState
import game.PresentationState

class EdSexualGame():
    
    def __init__(self, parent=None):
        self.aParent = parent
    
    def main(self):
        
        g = CGame()

        #ms = game.MenuState.CMenuState()
        ms = game.PresentationState.CPresentationState()
        g.setState(ms)
        
        g.gameLoop()
        g.destroy()
        
if __name__ == "__main__":
    j = EdSexualGame()
    j.main()