aboutsummaryrefslogtreecommitdiff
path: root/stockton-levels/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stockton-levels/src/lib.rs')
-rw-r--r--stockton-levels/src/lib.rs11
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;