Files
2023-10-30 05:46:09 -07:00

18 lines
319 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);
/* 0x04 */ u8 mTarget;
};
}
#endif /* JASINSTEFFECT_H */