altra64/inc/sound.h

15 lines
305 B
C
Raw Normal View History

2017-10-06 09:48:52 -04:00
//
// Copyright (c) 2017 The Altra64 project contributors
// See LICENSE file in the project root for full license information.
//
2017-10-11 11:53:18 -04:00
#ifndef _SOUND_H
#define _SOUND_H
2017-10-06 09:48:52 -04:00
void sndInit(void);
void sndPlayBGM(char* filename);
void sndStopAll(void);
void sndPlaySFX(char* filename);
2017-10-11 11:53:18 -04:00
void sndUpdate(void);
#endif