OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
gt2aSound.h
1/*
2GameSpy GT2 SDK
3GT2Action - sample app
4Dan "Mr. Pants" Schoenblum
5dan@gamespy.com
6
7Copyright 2000 GameSpy Industries, Inc
8
9*/
10
11#ifndef _GT2ASOUND_H_
12#define _GT2ASOUND_H_
13
14enum
15{
16 SOUND_EXPLOSION,
17 SOUND_MINE,
18 SOUND_DIE,
19 SOUND_ROCKET,
20 SOUND_PICKUP,
21 NUM_SOUNDS
22};
23
24GT2Bool InitializeSound
25(
26 void
27);
28
29void CleanupSound
30(
31 void
32);
33
34void ToggleSound
35(
36 void
37);
38
39void PlaySoundEffect
40(
41 int sound
42);
43
44#endif