view gamelib/constants.py @ 73:b503ccb0a86e

Only one schematic per turn, please.
author Jeremy Thurgood <firxen@gmail.com>
date Wed, 09 May 2012 00:25:58 +0200
parents a253fae32a6f
children a40a76012bd7
line wrap: on
line source

# The usual game constants

WIDTH = 800
HEIGHT = 600
SCREEN = (WIDTH, HEIGHT)
FPS = 30

# Sound related (standard options)
FREQ = 44100
BITSIZE = -16  # unsigned 16 bit
CHANNELS = 2
BUFFER = 1024