diff --git a/src/wadfile.rs b/src/wadfile.rs index 9933553..466f9c0 100644 --- a/src/wadfile.rs +++ b/src/wadfile.rs @@ -7,11 +7,11 @@ use std::{ }; pub struct WADFile { - pub(super) wad_path: String, - pub(super) identifier: String, - pub(super) num_lumps: u32, - pub(super) init_offset: u32, - pub(super) lump_directory: Vec, + pub wad_path: String, + pub identifier: String, + pub num_lumps: u32, + pub init_offset: u32, + lump_directory: Vec, } impl WADFile {