Files
tww/include/JSystem/JAudio/JASInstEffect.h
T
Jcw87 40e3fe24cb JAudio (#1196)
* JStudio

* JAudio
2026-09-05 10:54:59 -04:00

21 lines
382 B
C++

#ifndef JASINSTEFFECT_H
#define JASINSTEFFECT_H
#include "dolphin/types.h"
namespace JASystem {
class TInstEffect {
public:
TInstEffect() { mTarget = 0; }
virtual f32 getY(int, int) const = 0;
void setTarget(int);
u8 getTarget() const { return mTarget; }
private:
/* 0x04 */ u8 mTarget;
};
}
#endif /* JASINSTEFFECT_H */