hmmm not much change

This commit is contained in:
沈瑗杰 2020-12-05 21:26:18 +08:00
parent 3814fd34c0
commit ac3562d2e2

View File

@ -6,9 +6,6 @@ mail: 3695888@qq.com
import pyglet
import libs
from pyglet.window import Window
from pyglet.app import run
class Game:
def __init__(self):
@ -21,11 +18,11 @@ class Game:
# list
def start_game(self):
run()
pyglet.app.run()
def setup(self):
# window
self.window = Window(width=800, height=600,
self.window = pyglet.window.Window(width=800, height=600,
caption='minecraft PE', resizable=True)