blob: f04fc2e3fc88bd3b6c97353a1537aca68d00f27d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef SFX_HEADER__
#define SFX_HEADER__
/* *************************************
* Includes
* *************************************/
#include "Global_Inc.h"
#include "System.h"
/* *************************************
* Defines
* *************************************/
/* *************************************
* Structs and enums
* *************************************/
typedef enum
{
INTRO_TRACK = 2,
GAMEPLAY_TRACK1,
GAMEPLAY_TRACK2,
GAMEPLAY_FIRST_TRACK = GAMEPLAY_TRACK1,
GAMEPLAY_LAST_TRACK = GAMEPLAY_TRACK2
}MUSIC_TRACKS;
/* *************************************
* Global prototypes
* *************************************/
void SfxPlaySound(SsVag* sound);
bool SfxUploadSound(const char* file_path, SsVag* vag);
void SfxPlayTrack(MUSIC_TRACKS track);
void SfxStopMusic(void);
#endif //SFX_HEADER__
|