diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
commit | 2111c1248b08236a839dcf22036f92735bceb31c (patch) | |
tree | 9313da344b7134a913d1d917162e55b35fe1e74f /stockton-levels/src/traits/mod.rs | |
parent | 102e166b040030b590df83888a1d1a47d0130f10 (diff) |
chore(all): style formatting and clippy fixes
Diffstat (limited to 'stockton-levels/src/traits/mod.rs')
-rw-r--r-- | stockton-levels/src/traits/mod.rs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/stockton-levels/src/traits/mod.rs b/stockton-levels/src/traits/mod.rs index 15bac30..3ee47b4 100644 --- a/stockton-levels/src/traits/mod.rs +++ b/stockton-levels/src/traits/mod.rs @@ -1,4 +1,4 @@ -// Copyright (C) Oscar Shrimpton 2019 +// Copyright (C) Oscar Shrimpton 2019 // 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 @@ -14,28 +14,28 @@ // with this program. If not, see <http://www.gnu.org/licenses/>. //! Traits for parts of files that can exist -pub mod visdata; -pub mod entities; -pub mod textures; -pub mod planes; -pub mod vertices; -pub mod light_maps; -pub mod light_vols; pub mod brushes; pub mod effects; +pub mod entities; pub mod faces; -pub mod tree; +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::visdata::HasVisData; -pub use self::textures::HasTextures; -pub use self::entities::HasEntities; -pub use self::planes::HasPlanes; -pub use self::vertices::{HasVertices, HasMeshVerts}; -pub use self::light_maps::HasLightMaps; -pub use self::light_vols::HasLightVols; 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::models::HasModels;
\ No newline at end of file +pub use self::vertices::{HasMeshVerts, HasVertices}; +pub use self::visdata::HasVisData; |