blob: c65cde8da9b889c126d7d5f1f4f7d9ef1d6bea56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
* Copyright (C) Oscar Shrimpton 2020
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//! Traits for parts of files that can exist
pub mod brushes;
pub mod effects;
pub mod entities;
pub mod faces;
pub mod light_maps;
pub mod light_vols;
pub mod models;
pub mod planes;
pub mod textures;
pub mod tree;
pub mod vertices;
pub mod visdata;
pub use self::brushes::HasBrushes;
pub use self::effects::HasEffects;
pub use self::entities::HasEntities;
pub use self::faces::HasFaces;
pub use self::light_maps::HasLightMaps;
pub use self::light_vols::HasLightVols;
pub use self::models::HasModels;
pub use self::planes::HasPlanes;
pub use self::textures::HasTextures;
pub use self::tree::HasBSPTree;
pub use self::vertices::{HasMeshVerts, HasVertices};
pub use self::visdata::HasVisData;
|