blob: 75a2455068f305b763fc6688b37240ecdc9e37bb (
plain) (
tree)
|
|
#ifndef SOUNDS_H
#define SOUNDS_H
const int SOUND_BOUNCE = 0;
const int MUSIC_DEFEAT = 1;
const int MUSIC_VICTORY = 2;
const int MUSIC_TITLE = 3;
const int STOP_ALL_SOUNDS = 99;
#endif
|