mirror of
https://github.com/zeldaret/tp
synced 2026-05-30 17:06:11 -04:00
5390dfe55f
* 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 */
|