mirror of https://github.com/zeldaret/tp.git
23 lines
484 B
C++
23 lines
484 B
C++
#ifndef Z2AUDIOCS_H
|
|
#define Z2AUDIOCS_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JKRHeap;
|
|
class JKRArchive;
|
|
|
|
class Z2AudioCS {
|
|
public:
|
|
static void newSpkSoundMemPool();
|
|
static int init(JKRHeap*, JKRArchive*, s32, s32);
|
|
static void update();
|
|
static void connect(s32);
|
|
static void disconnect(s32);
|
|
static void extensionProcess(s32, s32);
|
|
u32 getHandleSoundID(s32);
|
|
static void start(s32, s32);
|
|
static int startLevel(s32, s32);
|
|
};
|
|
|
|
#endif /* Z2AUDIOCS_H */
|