vmf_forge/vmf/
mod.rs

1//! This module contains the core data structures for representing VMF files,
2//! including the `World`, `Entity`, `Solid`, and other related types.
3//! It also re-exports the submodules `common`, `entities`, `metadata`, `regions`, and `world`.
4
5pub mod common;
6pub mod entities;
7pub mod metadata;
8pub mod regions;
9pub mod world;