Difficult-Rocket/Difficult_Rocket/api/delivery.py

29 lines
659 B
Python
Raw Normal View History

2021-09-08 23:38:34 +08:00
# -------------------------------
# Difficult Rocket
2023-01-20 14:08:12 +08:00
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
2021-09-08 23:38:34 +08:00
# All rights reserved
# -------------------------------
2021-04-02 23:31:54 +08:00
"""
2020-12-14 22:31:34 +08:00
writen by shenjackyuanjie
2021-09-08 23:38:34 +08:00
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
2021-04-02 23:31:54 +08:00
"""
2020-12-14 22:31:34 +08:00
2020-12-16 06:33:33 +08:00
2020-12-14 22:31:34 +08:00
class Delivery:
def __init__(self):
2021-01-11 21:58:51 +08:00
# bool
2020-12-14 22:31:34 +08:00
self.using = False
2021-08-24 22:31:52 +08:00
self.read = False
2021-01-11 21:58:51 +08:00
self.key_board_get = False
# dic
2020-12-14 22:31:34 +08:00
self.ship_info = {}
self.planet_system = {}
self.main_ship_parts = {}
self.this_planet_info = {}
self.back_ground_element = {}
2021-01-11 21:58:51 +08:00
# value
2021-02-14 20:22:29 +08:00
self.back_ground_image = ''