Add 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