blob: 43055c27412ca39744ecef18a4e06c3124babedf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef GUARD_SND_LFO_H
#define GUARD_SND_LFO_H
#include "nitro/types.h"
#include "nitro/SND_exChannel_shared.h"
void SND_InitLfoParam(struct SNDLfoParam *lfoParam);
void SND_StartLfo(struct SNDLfo *lfo);
void SND_UpdateLfo(struct SNDLfo *lfo);
int SND_GetLfoValue(struct SNDLfo *lfo);
#endif //GUARD_SND_LFO_H
|