All Changes

This commit is contained in:
Moses Troyer
2025-08-16 17:15:49 +00:00
committed by Banjo Kazooie
parent fd208f77ca
commit c2dd933d22
389 changed files with 7824 additions and 6965 deletions

View File

@@ -0,0 +1,10 @@
#define EMITTER_COUNT 3
#define EMITTER_CAPACITY 0x20
enum dust_emitter_type_e {
DUST_EMITTER_TYPE_DUST = 0,
DUST_EMITTER_TYPE_BREAK_DUST = 1
};
extern void dustEmitter_empty(ParticleEmitter *);
extern void dustEmitter_emit(f32[3], f32[3], s32[4], bool, f32, f32, s32, s32, enum dust_emitter_type_e);