mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
7154ac08e1
* initial freezard actor struct + setActionMode OK * daE_FZ_Draw * setReflectAngle * mBoundSoundset * daE_FZ_Execute & execute * demoDelete * daE_FZ_Delete & _delete * CreateHeap * useHeapInit * cc_set * mtx_set * action WIP * way_gake_check * executeRollMove * executeMove * draw WIP * executeDamage * checkpoint * create * checkpoint * daE_FZ_c::executeWait * checkpoint * daE_FZ_c::damage_check almost done * rm asm * rm headers * setup_profile WIP + doxygen update * fix merge issues * docs fix? * fix2 * doxygen updates * setup g_profile_E_FZ, profile setup script WIP * update github actions * update progress.md
30 lines
613 B
C
30 lines
613 B
C
#ifndef JASWAVEINFO_H
|
|
#define JASWAVEINFO_H
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
struct JASWaveInfo {
|
|
JASWaveInfo() {
|
|
field_0x01 = 0x3c;
|
|
field_0x20 = &one;
|
|
}
|
|
|
|
/* 0x00 */ u8 field_0x00;
|
|
/* 0x01 */ u8 field_0x01;
|
|
/* 0x02 */ u8 field_0x02;
|
|
/* 0x04 */ f32 field_0x04;
|
|
/* 0x08 */ int field_0x08;
|
|
/* 0x0C */ int field_0x0c;
|
|
/* 0x10 */ u32 field_0x10;
|
|
/* 0x14 */ int field_0x14;
|
|
/* 0x18 */ int field_0x18;
|
|
/* 0x1C */ s16 field_0x1c;
|
|
/* 0x1E */ s16 field_0x1e;
|
|
/* 0x20 */ const u32* field_0x20;
|
|
|
|
static u32 one;
|
|
};
|
|
|
|
#endif /* JASWAVEINFO_H */ |