Add constants.
authorSimon Cross <hodgestar@gmail.com>
Sun, 4 Sep 2016 13:35:36 +0000 (15:35 +0200)
committerSimon Cross <hodgestar@gmail.com>
Sun, 4 Sep 2016 13:35:36 +0000 (15:35 +0200)
tabakrolletjie/constants.py [new file with mode: 0644]

diff --git a/tabakrolletjie/constants.py b/tabakrolletjie/constants.py
new file mode 100644 (file)
index 0000000..6f2af9c
--- /dev/null
@@ -0,0 +1,10 @@
+""" Game constants.
+"""
+
+TITLE = "Space Turnips"
+
+# 704 is 768 minus space for window decorations :)
+SCREEN_SIZE = (1024, 704)
+
+# Frame per second
+FPS = 60