Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/Main.py
blob: c069b64bf20117977ca677e35e2c9ccb533ee5d6 (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
26
27
# -*- coding: utf-8 -*-

import api
import game
import game.MenuState
from game.MenuState import CMenuState
import api.Game
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()