Created
September 14, 2018 23:45
-
-
Save jam1garner/f1f6970b61338d894516a9d9d6bbecb9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------------------------ | |
//--- 010 Editor v7.0.2 Binary Template | |
// | |
// File: GameMaker 2 AudioGroup File | |
// Authors: jam1garner (w/ help from FruitMage) | |
// Version: 1 | |
// ID Bytes: FORM | |
//------------------------------------------------ | |
LittleEndian(); | |
struct File { | |
uint size<bgcolor=cBlue>; | |
byte contents[size]<bgcolor=cYellow>; | |
}; | |
struct AudoBlock { | |
char magic[4]<bgcolor=cRed>; | |
uint blockSize<bgcolor=cBlue>; | |
uint fileCount<bgcolor=cBlue>; | |
uint fileOffsets[fileCount]<bgcolor=cGreen>; | |
local int i; | |
for(i=0; i<fileCount; i++){ | |
FSeek(fileOffsets[i]); | |
File file; | |
} | |
}; | |
struct FormHeader { | |
char magic[4]<bgcolor=cRed>; | |
uint blockSize<bgcolor=cBlue>; | |
AudoBlock audoSection; | |
} formHeader; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment