mirror of
https://github.com/joel16/PSPickr.git
synced 2025-02-17 01:09:17 +00:00
13 lines
214 B
C++
13 lines
214 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace Audio {
|
|
void Init(void);
|
|
void Exit(void);
|
|
int InitGameOverWav(void);
|
|
int InitNopeWav(void);
|
|
void PlayGameOverWav(void);
|
|
void PlayNopeWav(void);
|
|
}
|