Enter Boyd, from not exactly stage left.
[tabakrolletjie.git] / tabakrolletjie / constants.py
1 """ Game constants.
2 """
3
4 TITLE = "Space Turnips"
5
6 # Debug
7 DEBUG = False
8
9 # 704 is 768 minus space for window decorations :)
10 SCREEN_SIZE = (1024, 704)
11
12 # Frame per second
13 FPS = 60
14
15 # Pymunk categories
16 OBSTACLE_CATEGORY = 1 << 0
17 LIGHT_CATEGORY = 1 << 1
18 MOULD_CATEGORY = 1 << 2