diff options
Diffstat (limited to 'stockton-levels/src/lib.rs')
-rw-r--r-- | stockton-levels/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/stockton-levels/src/lib.rs b/stockton-levels/src/lib.rs index 37d1050..aef802e 100644 --- a/stockton-levels/src/lib.rs +++ b/stockton-levels/src/lib.rs @@ -13,6 +13,7 @@ // 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. +#![feature(generic_associated_types)] #[macro_use] extern crate bitflags; @@ -22,4 +23,6 @@ extern crate nalgebra as na; mod helpers; pub mod q3; pub mod types; -pub mod traits;
\ No newline at end of file +pub mod traits; +pub mod prelude; +pub mod features;
\ No newline at end of file |