Created
April 4, 2021 06:23
-
-
Save Steve-xmh/d0e6313f3a1aa5355db15aeabbccd5b8 to your computer and use it in GitHub Desktop.
Pattern file of Pack File of Selene Engine based game (Such as Densha de D series)
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
struct Entry { | |
char name[64]; | |
le u32 pathcrc; // CRC32 hash of name | |
le u32 unknown1; // Still Work in progress | |
le u32 offset; | |
le u32 size; | |
le u32 encrypted; | |
}; | |
struct File { | |
char sign[4]; | |
le u32 count; | |
Entry entries[count]; | |
}; | |
File file @ 0x0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment