22 lines
281 B
Python
22 lines
281 B
Python
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
"""
|
|
|
|
from libs.Game_threads import orbit_demo
|
|
|
|
import libs
|
|
import pyglet
|
|
import threading
|
|
import multiprocessing
|
|
|
|
|
|
class Game():
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def setup(self):
|
|
self.game_thread = orbit_demo()
|
|
|