2020-12-05 21:24:54 +08:00
|
|
|
"""
|
|
|
|
writen by shenjackyuanjie
|
|
|
|
mail: 3695888@qq.com
|
|
|
|
"""
|
|
|
|
|
2021-01-11 21:58:51 +08:00
|
|
|
from libs import Game_threads
|
2020-12-05 21:24:54 +08:00
|
|
|
import libs
|
2020-12-13 00:35:07 +08:00
|
|
|
import pyglet
|
|
|
|
import threading
|
2020-12-05 21:24:54 +08:00
|
|
|
|
|
|
|
|
2020-12-13 18:39:12 +08:00
|
|
|
class Game():
|
2020-12-21 18:46:20 +08:00
|
|
|
|
2020-12-05 21:24:54 +08:00
|
|
|
def __init__(self):
|
2020-12-13 18:39:12 +08:00
|
|
|
pass
|
2021-01-11 21:34:25 +08:00
|
|
|
|
2021-01-11 21:58:51 +08:00
|
|
|
def setup(self):
|
|
|
|
self.game_thread = orbit_demo()
|
|
|
|
|
|
|
|
|
|
|
|
test = Game()
|
|
|
|
test.setup()
|