16 lines
295 B
Python
16 lines
295 B
Python
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
"""
|
|
|
|
import libs
|
|
import pyglet
|
|
import threading
|
|
|
|
from pyglet.app import run
|
|
from pyglet.window import Window
|
|
from pyglet.resource import image
|
|
|
|
class RenderThread(threading.Thread):
|
|
def __init__(self, threadID, delivery_class):
|
|
pass |