Files
ac-decomp/include/jaudio_NES/effect.h
T
2025-06-21 12:28:29 -04:00

15 lines
379 B
C

#ifndef EFFECT_H
#define EFFECT_H
#include "types.h"
#include "jaudio_NES/audiowork.h"
extern void Nas_ChannelModInit(channel* ch);
extern void Nas_SweepInit(channel* ch);
extern void Nas_EnvInit(envp* env, envdat* data, s16* vol_out);
extern void Nas_ChannelModulation(channel* channel);
extern void Nas_MainCtrl(group* grp);
extern f32 Nas_EnvProcess(envp* process);
#endif