You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Constant.py
|
|
# 配置图片地址
|
|
IMAGE_PATH = "imgs\\"
|
|
# 设置页面宽高
|
|
scrrr_width = 800
|
|
scrrr_height = 560
|
|
# 创建控制游戏结束的状态
|
|
GAMEOVER = False
|
|
# 图片加载报错处理
|
|
LOG = "文件:{}中的方法:{}出错".format(__file__, __name__)
|