mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
15 lines
379 B
C
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
|