mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 01:30:00 -04:00
d2c0f942e5
* audioMgr setup * bunch of JAudio setup
13 lines
219 B
C
13 lines
219 B
C
#ifndef JAIAUDIBLE_H
|
|
#define JAIAUDIBLE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
struct JAIAudible {
|
|
virtual ~JAIAudible();
|
|
virtual void getOuterParams(int) = 0;
|
|
virtual void calc() = 0;
|
|
};
|
|
|
|
#endif /* JAIAUDIBLE_H */
|