Files
ac-decomp/src/ef_coin.c
T
2024-03-12 02:53:33 -04:00

35 lines
879 B
C

#include "ef_effect_control.h"
static void eCoin_init(xyz_t pos, int prio, s16 angle, GAME* game, u16 item_name, s16 arg0, s16 arg1);
static void eCoin_ct(eEC_Effect_c* effect, GAME* game, void* ct_arg);
static void eCoin_mv(eEC_Effect_c* effect, GAME* game);
static void eCoin_dw(eEC_Effect_c* effect, GAME* game);
eEC_PROFILE_c iam_ef_coin = {
// clang-format off
&eCoin_init,
&eCoin_ct,
&eCoin_mv,
&eCoin_dw,
eEC_IGNORE_DEATH,
eEC_NO_CHILD_ID,
eEC_IGNORE_DEATH_DIST,
// clang-format on
};
static void eCoin_init(xyz_t pos, int prio, s16 angle, GAME* game, u16 item_name, s16 arg0, s16 arg1) {
// TODO
}
static void eCoin_ct(eEC_Effect_c* effect, GAME* game, void* ct_arg) {
// TODO
}
static void eCoin_mv(eEC_Effect_c* effect, GAME* game) {
// TODO
}
static void eCoin_dw(eEC_Effect_c* effect, GAME* game) {
// TODO
}