Difficult-Rocket/libs/main.py

22 lines
281 B
Python
Raw Normal View History

2020-12-05 21:24:54 +08:00
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
"""
2021-01-11 22:54:41 +08:00
from libs.Game_threads import orbit_demo
2021-01-20 17:06:25 +08:00
2020-12-05 21:24:54 +08:00
import libs
import pyglet
import threading
2021-01-20 17:06:25 +08:00
import multiprocessing
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()