1
0
mirror of https://github.com/parasyte/alt64 synced 2024-08-13 15:53:52 -04:00
alt64/inc/sound.h
2017-10-11 16:53:18 +01:00

15 lines
305 B
C

//
// Copyright (c) 2017 The Altra64 project contributors
// See LICENSE file in the project root for full license information.
//
#ifndef _SOUND_H
#define _SOUND_H
void sndInit(void);
void sndPlayBGM(char* filename);
void sndStopAll(void);
void sndPlaySFX(char* filename);
void sndUpdate(void);
#endif