From de06972b1e19e4262af0990c741f1d027c3189b6 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 13 Apr 2025 15:08:40 -0400 Subject: [PATCH] Add examples of layer group file and chunk ids --- src/layer/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/layer/mod.rs b/src/layer/mod.rs index 2f359d0..fcacc76 100644 --- a/src/layer/mod.rs +++ b/src/layer/mod.rs @@ -520,6 +520,7 @@ struct OBSetEnableReferenced { #[brw(little)] #[allow(dead_code)] // most of the fields are unused at the moment struct LgbHeader { + // Example: "LGB1" file_id: u32, file_size: i32, total_chunk_count: i32, @@ -564,6 +565,7 @@ pub struct Layer { #[derive(Debug)] pub struct LayerChunk { + // Example: "LGP1" pub chunk_id: u32, pub layer_group_id: i32, pub name: String,