aboutsummaryrefslogtreecommitdiff
path: root/stockton-levels/src/q3/mod.rs
blob: 44d51594472d39a4e545e3e48b27d468a9377f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Parsing data from Q3 and similar BSPs

mod brushes;
mod effects;
mod entities;
mod faces;
pub mod file;
mod header;
mod light_maps;
mod light_vols;
mod models;
mod planes;
mod textures;
mod tree;
mod vertices;
mod visdata;

pub use self::file::Q3BspFile;