| 378 | |
| 379 | #[derive(Debug)] |
| 380 | struct MapHead { |
| 381 | magic: [u8; 2], |
| 382 | pointers: Vec<i32>, |
| 383 | title: Vec<u8>, // so far empty in map files we've seen, no idea what to do with this for now... could probably be a string |
| 384 | } |
| 385 | |
| 386 | fn load_maps() -> Vec<Map> { |
| 387 | let map_metadata = parse_map_head(DATADIR.to_owned() + "/MAPHEAD.WL1"); |
nothing calls this directly
no outgoing calls
no test coverage detected