mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
8 lines
120 B
Python
8 lines
120 B
Python
'''
|
|
Game Settings
|
|
'''
|
|
# Define the game settings
|
|
snake_size = 20
|
|
snake_speed = 10
|
|
window_width = 800
|
|
window_height = 600 |