Add pymunk category constants.
[tabakrolletjie.git] / tabakrolletjie / constants.py
1 """ Game constants.
2 """
3
4 TITLE = "Space Turnips"
5
6 # 704 is 768 minus space for window decorations :)
7 SCREEN_SIZE = (1024, 704)
8
9 # Frame per second
10 FPS = 60
11
12 # Pymunk categories
13 OBSTACLE_CATEGORY = 1 << 0
14 LIGHT_CATEGORY = 1 << 1