summaryrefslogtreecommitdiff
path: root/include/JSystem/JAudio/JASInstEffect.h
blob: 78f4a56c4970cb4ed5b0d868b8b7371b9c72b5ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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 */