9 lines
283 B
Python
9 lines
283 B
Python
class Settings:
|
|
"""A Class to store all settings for Alien Invasion"""
|
|
def __init__(self):
|
|
"""Initialize the game's settings"""
|
|
# Screen settings
|
|
self.screen_width = 800
|
|
self.screen_height = 600
|
|
self.bg_color = (230, 230, 230)
|
|
|