diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
commit | 439219e74090c7158f8dbc33fed4107a5eb7c003 (patch) | |
tree | 7ba62254b2d888578ff6c1c8de4f0f35c01c75dd /stockton-levels/src/lib.rs | |
parent | 04f17923d38171f07f72603a54237f20ca3572dd (diff) |
refactor(levels): no longer q3 specific
Diffstat (limited to 'stockton-levels/src/lib.rs')
-rw-r--r-- | stockton-levels/src/lib.rs | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/stockton-levels/src/lib.rs b/stockton-levels/src/lib.rs index a71d8e2..49609c2 100644 --- a/stockton-levels/src/lib.rs +++ b/stockton-levels/src/lib.rs @@ -10,18 +10,11 @@ // You should have received a copy of the GNU General Public License along // with this program. If not, see <http://www.gnu.org/licenses/>. -//! Parses common features from many BSP file formats. -#![allow(incomplete_features)] -#![feature(generic_associated_types)] +//! Interfaces & Data structures stockton expects when rendering a level. extern crate nalgebra as na; -#[macro_use] -extern crate bitflags; -pub mod coords; pub mod features; -mod helpers; +pub mod parts; pub mod prelude; -pub mod q3; -pub mod traits; pub mod types; |