2026-01-07 16:36:40 -05:00
|
|
|
type soundfile [display="Sound File"]
|
|
|
|
|
{
|
2026-01-11 12:09:57 -05:00
|
|
|
const PTR_INLINE = -1;
|
|
|
|
|
|
|
|
|
|
u8 exists;
|
|
|
|
|
ui("exists", "Exists");
|
|
|
|
|
|
|
|
|
|
u8 sound_type;
|
|
|
|
|
ui("sound_type", "Type");
|
|
|
|
|
|
|
|
|
|
skip 2;
|
|
|
|
|
|
|
|
|
|
i32 sound_ptr;
|
|
|
|
|
ui("sound_ptr", "Sound Ptr");
|
|
|
|
|
|
|
|
|
|
// Inline data
|
|
|
|
|
inline loaded_sound loaded_sound when sound_ptr;
|
2026-01-07 16:36:40 -05:00
|
|
|
}
|