diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2024-01-22 05:26:56 -0800 |
|---|---|---|
| committer | Jcw87 <Jcw87@users.noreply.github.com> | 2024-01-22 08:01:32 -0800 |
| commit | 93cc80b6638a984abef236ca6800a27ea5dfbcc2 (patch) | |
| tree | ec0fa311b95857379b0f00498439c263e163c41f /include/JSystem | |
| parent | 5cdf6c107f4b2e40aa53ac288602a0c26b1b3c7a (diff) | |
JASInstSense
Diffstat (limited to 'include/JSystem')
| -rw-r--r-- | include/JSystem/JAudio/JASInstSense.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/JSystem/JAudio/JASInstSense.h b/include/JSystem/JAudio/JASInstSense.h new file mode 100644 index 00000000..e7d34cf4 --- /dev/null +++ b/include/JSystem/JAudio/JASInstSense.h @@ -0,0 +1,25 @@ +#ifndef JASINSTSENSE_H +#define JASINSTSENSE_H + +#include "JSystem/JAudio/JASInstEffect.h" + +namespace JASystem { + class TInstSense : public TInstEffect { + public: + TInstSense() { + field_0x8 = 0; + field_0x9 = 60; + field_0xc = 1.0f; + field_0x10 = 1.0f; + } + virtual f32 getY(int, int) const; + void setParams(int, int, f32, f32); + + u8 field_0x8; + u8 field_0x9; + f32 field_0xc; + f32 field_0x10; + }; +} + +#endif /* JASINSTSENSE_H */ |
