mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
ebb0647e7b
Co-authored-by: roeming <roeming@users.noreply.github.com>
20 lines
285 B
C
20 lines
285 B
C
#ifndef SEQSETUP_H
|
|
#define SEQSETUP_H
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct seqp seqp; // TODO
|
|
|
|
void Jaq_Reset(void);
|
|
s32 Jaq_SetSeqData(seqp* seqp, u8* param_2, u32 param_3, int param_4);
|
|
s32 Jaq_StartSeq(u8);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|