aboutsummaryrefslogtreecommitdiff
path: root/stockton-levels
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:21 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:21 +0100
commit95708732572431dc057a9fd71fa8bd8571a336a2 (patch)
tree3255e3407eb069c8124d41e1d6f60163b7c5091d /stockton-levels
parent9bceddef62c48b56e7b93a2ca19636e1ff6486cb (diff)
feat(all): start using an ECS
Diffstat (limited to 'stockton-levels')
-rw-r--r--stockton-levels/src/features.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/stockton-levels/src/features.rs b/stockton-levels/src/features.rs
index dea1d15..f9e6455 100644
--- a/stockton-levels/src/features.rs
+++ b/stockton-levels/src/features.rs
@@ -32,5 +32,5 @@
use crate::coords::CoordSystem;
use crate::traits::*;
-pub trait MinBSPFeatures<S: CoordSystem>: HasBSPTree<S> {}
-impl<T, S: CoordSystem> MinBSPFeatures<S> for T where T: HasBSPTree<S> {}
+pub trait MinBSPFeatures<S: CoordSystem>: HasBSPTree<S> + Send + Sync {}
+impl<T, S: CoordSystem> MinBSPFeatures<S> for T where T: HasBSPTree<S> + Send + Sync {}