mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
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 */
|