aboutsummaryrefslogtreecommitdiff
path: root/stockton-levels/src/features.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stockton-levels/src/features.rs')
-rw-r--r--stockton-levels/src/features.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/stockton-levels/src/features.rs b/stockton-levels/src/features.rs
index 9b05772..f748bd0 100644
--- a/stockton-levels/src/features.rs
+++ b/stockton-levels/src/features.rs
@@ -12,8 +12,7 @@
// with this program. If not, see <http://www.gnu.org/licenses/>.
//! Marker traits for different feature sets
-use crate::coords::CoordSystem;
-use crate::traits::*;
+use crate::parts::*;
-pub trait MinBspFeatures<S: CoordSystem>: HasBspTree<S> + Send + Sync {}
-impl<T, S: CoordSystem> MinBspFeatures<S> for T where T: HasBspTree<S> + Send + Sync {}
+pub trait MinRenderFeatures: HasFaces + HasTextures + Send + Sync {}
+impl<T> MinRenderFeatures for T where T: HasFaces + HasTextures + Send + Sync {}