shenjack
9fb2f717ea
readme 清理一些无用文件 rename folder awa awa load textures! 删掉了一些没用的东西 hmmm 好耶! 看起来少,实际上多 awa update 1.0! rue ah! 同步libs更新 Update __init__.py merge!
29 lines
659 B
Python
29 lines
659 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
"""
|
|
writen by shenjackyuanjie
|
|
mail: 3695888@qq.com
|
|
github: @shenjackyuanjie
|
|
gitee: @shenjackyuanjie
|
|
"""
|
|
|
|
|
|
class Delivery:
|
|
def __init__(self):
|
|
# bool
|
|
self.using = False
|
|
self.read = False
|
|
self.key_board_get = False
|
|
# dic
|
|
self.ship_info = {}
|
|
self.planet_system = {}
|
|
self.main_ship_parts = {}
|
|
self.this_planet_info = {}
|
|
self.back_ground_element = {}
|
|
# value
|
|
self.back_ground_image = ''
|