diff gamelib/constants.py @ 6:c0abad23a055

Add start, quit and toggle fullscreen buttons to menu.
author Simon Cross <hodgestar@gmail.com>
date Sun, 30 Aug 2009 13:25:04 +0000
parents 67b79658b047
children 0d4799866bcf
line wrap: on
line diff
--- a/gamelib/constants.py	Sun Aug 30 13:04:24 2009 +0000
+++ b/gamelib/constants.py	Sun Aug 30 13:25:04 2009 +0000
@@ -1,12 +1,17 @@
 """Operation Fox Assault constants."""
 
+# Project metadata
+
 NAME = "Operation Fox Assault"
 
-SCREEN = (800, 600)
-
 AUTHORS = [
     ("Adrianna Pinska", "adrianna.pinska@gmail.com"),
     ("Jeremy Thurgood", ""),
     ("Neil Muller", ""),
     ("Simon Cross", "hodgestar+rinkhals@gmail.com"),
 ]
+
+# GUI constants
+
+SCREEN = (800, 600)
+FG_COLOR = (255, 255, 255)