Merge effects in same TU

This commit is contained in:
Cuyler36
2024-03-11 03:17:40 -04:00
parent 6c18ada458
commit 0641da1ef7
5 changed files with 84 additions and 87 deletions
+28
View File
@@ -27,3 +27,31 @@ eEC_PROFILE_c iam_ef_flash = {
eEC_IGNORE_DEATH_DIST,
// clang-format on
};
static void eFlashC_init(xyz_t pos, int prio, s16 angle, GAME* game, u16 item_name, s16 arg0, s16 arg1) {
// TODO
}
static void eFlashC_ct(eEC_Effect_c* effect, GAME* game, void* ct_arg) {
// TODO
}
static void eFlashC_mv(eEC_Effect_c* effect, GAME* game) {
// TODO
}
static void eFlashC_dw(eEC_Effect_c* effect, GAME* game) {
// TODO
}
eEC_PROFILE_c iam_ef_flashC = {
// clang-format off
&eFlashC_init,
&eFlashC_ct,
&eFlashC_mv,
&eFlashC_dw,
eEC_IGNORE_DEATH,
eEC_NO_CHILD_ID,
eEC_IGNORE_DEATH_DIST,
// clang-format on
};