This commit is contained in:
沈瑗杰 2020-12-14 22:31:34 +08:00
parent 82ce83ea73
commit b3b346aae3
5 changed files with 23 additions and 7 deletions

View File

@ -3,10 +3,5 @@ writen by shenjackyuanjie
mail: 3695888@qq.com
"""
# import folders
import libs.Game_threads
# import in this forder
import libs.main
import libs.loads
import libs.setup
import libs.render

View File

@ -7,5 +7,5 @@ import libs
import threading
class Orbit_demo(threading.Thread):
def __init__(self):
def __init__(self, threadID, delivery_class):
pass

View File

@ -3,5 +3,11 @@ writen by shenjackyuanjie
mail: 3695888@qq.com
"""
# import folders
import libs.Game_threads
# import in this forder
import libs.main
import libs.loads
import libs.setup
import libs.render_thread
import libs.delivery

14
libs/delivery.py Normal file
View File

@ -0,0 +1,14 @@
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
"""
class Delivery:
def __init__(self):
self.using = False
self.ship_info = {}
self.planet_system = {}
self.main_ship_parts = {}
self.this_planet_info = {}
self.back_ground_element = {}
self.back_ground_image = ""

View File

@ -3,6 +3,7 @@ writen by shenjackyuanjie
mail: 3695888@qq.com
"""
import libs
import pyglet
import threading
@ -11,5 +12,5 @@ from pyglet.window import Window
from pyglet.resource import image
class RenderThread(threading.Thread):
def __init__(self):
def __init__(self, threadID, delivery_class):
pass