Skip to content

String Database Format

brett19 edited this page Oct 11, 2014 · 3 revisions

Base Format

#header {
  uint32 string_count
  for(i = 0; i < string_count; ++i) {
    uint32 data_offset
  }
}
#data {
  for(i = 0; i < string_count; ++i) {
    uint16str value;
  }
}

Clone this wiki locally