DR -> DR SDK #16

Merged
shenjackyuanjie merged 41 commits from feature/dr-sdk into main 2023-05-03 00:40:53 +08:00
3 changed files with 3 additions and 5 deletions
Showing only changes of commit db7cf30568 - Show all commits

1
DR.py
View File

@ -100,6 +100,7 @@ def main() -> None:
print(crash.all_thread) print(crash.all_thread)
print(crash.all_process) print(crash.all_process)
print("Difficult_Rocket 已关闭") print("Difficult_Rocket 已关闭")
sys.exit(0)
if __name__ == '__main__': if __name__ == '__main__':

View File

@ -11,9 +11,6 @@ github: @shenjackyuanjie
gitee: @shenjackyuanjie gitee: @shenjackyuanjie
""" """
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from Difficult_Rocket.api import screen, mod, exception from Difficult_Rocket.api import screen, mod, exception
__all__ = ['screen', 'mod', 'exception'] __all__ = ['screen', 'mod', 'exception']

View File

@ -8,7 +8,7 @@
from typing import Tuple, List, Optional from typing import Tuple, List, Optional
# from libs # from libs
from MCDR.version import Version from libs.MCDR.version import Version
# from DR # from DR
from Difficult_Rocket.main import Game from Difficult_Rocket.main import Game