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

from api.Game import CGame
import game.PresentationState

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

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