diff options
Diffstat (limited to 'stockton-types')
-rw-r--r-- | stockton-types/src/world.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stockton-types/src/world.rs b/stockton-types/src/world.rs index 8294523..69a7ad6 100644 --- a/stockton-types/src/world.rs +++ b/stockton-types/src/world.rs @@ -18,11 +18,11 @@ use stockton_levels::prelude::*; /// A loaded world. -pub struct World<T: MinBSPFeatures> { +pub struct World<T: MinBSPFeatures<VulkanSystem>> { pub map: T, } -impl<T: MinBSPFeatures> World<T> { +impl<T: MinBSPFeatures<VulkanSystem>> World<T> { /// Create a new world from a level. /// The level can be any format, as long as it has the required features of a bsp. pub fn new(map: T) -> World<T> { |