Expand description
A prelude module that re-exports commonly used items from the vmf_forge
crate.
This module is intended to be used as a convenient way to import the most frequently used items from the crate, without having to specify the full path to each item.
§Example
use vmf_forge::prelude::*;
// Now you can use VmfFile, VmfError, etc. without the need for crate::
let vmf_file = VmfFile::open("your_map.vmf");
Re-exports§
pub use crate::VmfFile;
pub use crate::errors::VmfError;
pub use crate::errors::VmfResult;
pub use crate::vmf::common::Editor;
pub use crate::vmf::entities::Entities;
pub use crate::vmf::entities::Entity;
pub use crate::vmf::metadata::VersionInfo;
pub use crate::vmf::metadata::ViewSettings;
pub use crate::vmf::metadata::VisGroup;
pub use crate::vmf::metadata::VisGroups;
pub use crate::vmf::regions::Camera;
pub use crate::vmf::regions::Cameras;
pub use crate::vmf::regions::Cordon;
pub use crate::vmf::regions::Cordons;
pub use crate::vmf::world::Side;
pub use crate::vmf::world::Solid;
pub use crate::vmf::world::World;