You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
340 B
13 lines
340 B
from Managed.Game import Game
|
|
from Managed.Container import Container
|
|
from Managed.Window import Window
|
|
import pygame
|
|
if __name__ == '__main__':
|
|
pygame.init()
|
|
container = Container()
|
|
game = Game()
|
|
window = Window()
|
|
game.setContainer(container)
|
|
game.setWindow(window)
|
|
window.setContainer(container)
|
|
game.run() |