feat: add single player scene

This commit is contained in:
2021-07-08 01:20:33 -04:00
parent f3479e2be5
commit e607002062
5 changed files with 231 additions and 253 deletions

View File

@@ -9,13 +9,11 @@ from tetri5.util import ConfigurationManager
def main() -> None:
ConfigurationManager.init()
game = Game()
game.init()
Game.init()
while True:
game.update()
game.draw()
Game.update()
Game.draw()
if __name__ == "__main__":
main()