Difficult-Rocket/libs/pyglet_rs/__init__.py
2023-03-25 12:34:02 +08:00

16 lines
339 B
Python

# -------------------------------
# Difficult Rocket
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
# All rights reserved
# -------------------------------
from .lib import *
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from pyglet.event import EventDispatcher
class Sprite(EventDispatcher):
...