# -*- 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()