Difference between revisions of "STLC (File Format)"
From Retro Modding Wiki
(Created page with "The '''STLC format''' is a file format that appears in Metroid Prime 2: Echoes. It stores a string list. The only STLC resource in the game (AudioGrp.pak 252e6701.STLC) is...") |
(No difference)
|
Revision as of 03:45, 25 May 2016
The STLC format is a file format that appears in Metroid Prime 2: Echoes. It stores a string list. The only STLC resource in the game (AudioGrp.pak 252e6701.STLC) is used to store sound effect names. It is one of the most complicated formats to appear in the entire Metroid Prime series.
Contents
Format
Offset | Type | Count | Name | Notes |
---|---|---|---|---|
0x0 | u32 | 1 | String Count | Count of strings in the next array. |
0x4 | string | String Count | String List | Array of zero-terminated strings. |
End of file |