vmf_forge/vmf/
mod.rs

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

pub mod common;
pub mod entities;
pub mod metadata;
pub mod regions;
pub mod world;