Skip to content

Instantly share code, notes, and snippets.

@jam1garner
Created September 14, 2018 23:45
Show Gist options
  • Save jam1garner/f1f6970b61338d894516a9d9d6bbecb9 to your computer and use it in GitHub Desktop.
Save jam1garner/f1f6970b61338d894516a9d9d6bbecb9 to your computer and use it in GitHub Desktop.
//------------------------------------------------
//--- 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