thread!
This commit is contained in:
parent
82ce83ea73
commit
b3b346aae3
@ -3,10 +3,5 @@ writen by shenjackyuanjie
|
|||||||
mail: 3695888@qq.com
|
mail: 3695888@qq.com
|
||||||
"""
|
"""
|
||||||
# import folders
|
# import folders
|
||||||
import libs.Game_threads
|
|
||||||
|
|
||||||
# import in this forder
|
# import in this forder
|
||||||
import libs.main
|
|
||||||
import libs.loads
|
|
||||||
import libs.setup
|
|
||||||
import libs.render
|
|
||||||
|
@ -7,5 +7,5 @@ import libs
|
|||||||
import threading
|
import threading
|
||||||
|
|
||||||
class Orbit_demo(threading.Thread):
|
class Orbit_demo(threading.Thread):
|
||||||
def __init__(self):
|
def __init__(self, threadID, delivery_class):
|
||||||
pass
|
pass
|
@ -3,5 +3,11 @@ writen by shenjackyuanjie
|
|||||||
mail: 3695888@qq.com
|
mail: 3695888@qq.com
|
||||||
"""
|
"""
|
||||||
# import folders
|
# import folders
|
||||||
|
import libs.Game_threads
|
||||||
|
|
||||||
# import in this forder
|
# 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
14
libs/delivery.py
Normal 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 = ""
|
@ -3,6 +3,7 @@ writen by shenjackyuanjie
|
|||||||
mail: 3695888@qq.com
|
mail: 3695888@qq.com
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import libs
|
||||||
import pyglet
|
import pyglet
|
||||||
import threading
|
import threading
|
||||||
|
|
||||||
@ -11,5 +12,5 @@ from pyglet.window import Window
|
|||||||
from pyglet.resource import image
|
from pyglet.resource import image
|
||||||
|
|
||||||
class RenderThread(threading.Thread):
|
class RenderThread(threading.Thread):
|
||||||
def __init__(self):
|
def __init__(self, threadID, delivery_class):
|
||||||
pass
|
pass
|
Loading…
Reference in New Issue
Block a user