Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/Main.py
blob: 3603b51f6821195b363f2be6fa641bc27b530d00 (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 game.MenuState import CMenuState
from api.Game import CGame

class EdSexualGame():
    
    def __init__(self):
        pass
    
    def main(self):
        
        g = CGame()

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