add funai_bdp extractor

This commit is contained in:
theubusu
2026-02-20 21:05:51 +01:00
parent d825a9339f
commit c93c18833c
5 changed files with 91 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
use binrw::BinRead;
use crate::utils::common;
pub static DEC_KEY: u32 = 0x13641A98;
#[derive(BinRead)]
pub struct IndexTableEntry {
name_bytes: [u8; 32],
pub offset: u32,
pub size: u32,
_unk: u32,
}
impl IndexTableEntry {
pub fn name(&self) -> String {
common::string_from_bytes(&self.name_bytes)
}
}