添加 'settings.py'
This commit is contained in:
parent
02949fde88
commit
8d6d583000
|
@ -0,0 +1,9 @@
|
|||
class Settings():
|
||||
"""存储《外星人入侵》的所有设置的类"""
|
||||
|
||||
def __init__(self):
|
||||
"""初始化游戏的静态设置"""
|
||||
# 屏幕设置
|
||||
self.screen_width = 1200
|
||||
self.screen_height = 800
|
||||
self.bg_color = (230, 230, 230)
|
Loading…
Reference in New Issue