添加 'settings.py'

This commit is contained in:
206530212 2021-06-17 19:51:11 +08:00
parent 02949fde88
commit 8d6d583000
1 changed files with 9 additions and 0 deletions

9
settings.py Normal file
View File

@ -0,0 +1,9 @@
class Settings():
"""存储《外星人入侵》的所有设置的类"""
def __init__(self):
"""初始化游戏的静态设置"""
# 屏幕设置
self.screen_width = 1200
self.screen_height = 800
self.bg_color = (230, 230, 230)