mirror of
https://github.com/kwsch/pkNX.git
synced 2026-08-28 05:14:18 -05:00
16 lines
308 B
Plaintext
16 lines
308 B
Plaintext
namespace pkNX.Structures.FlatBuffers.SWSH;
|
|
attribute "fs_serializer";
|
|
|
|
table ScriptMetaEntry {
|
|
Hash:ulong (key);
|
|
PathAMX:string (required);
|
|
PathText:string (required);
|
|
}
|
|
|
|
// script_id_record.bin
|
|
table ScriptMeta (fs_serializer) {
|
|
Table:[ScriptMetaEntry] (required);
|
|
}
|
|
|
|
root_type ScriptMeta;
|