comparison gamelib/constants.py @ 80:a40a76012bd7

Refactor message handling so we can deal with in the gui
author Neil Muller <drnlmuller@gmail.com>
date Wed, 09 May 2012 12:08:44 +0200
parents a253fae32a6f
children 50f8476aa929
comparison
equal deleted inserted replaced
79:8d1cf0cbe5e1 80:a40a76012bd7
8 # Sound related (standard options) 8 # Sound related (standard options)
9 FREQ = 44100 9 FREQ = 44100
10 BITSIZE = -16 # unsigned 16 bit 10 BITSIZE = -16 # unsigned 16 bit
11 CHANNELS = 2 11 CHANNELS = 2
12 BUFFER = 1024 12 BUFFER = 1024
13
14 # Result codes for UI hints
15 (MAJOR_SETBACK, FAILURE, SUCCESS, MAJOR_SUCCESS, GAME_WIN, NEW_SCIENCE,
16 NEW_SCHEMATIC) = range(7)