From 58319f04f239ab4a81b4eb878ad987fe453fef9e Mon Sep 17 00:00:00 2001 From: tcmal Date: Sun, 25 Aug 2024 17:44:20 +0100 Subject: feat(levels): coord system types and swizzling the room is now the right way up! yay! --- stockton-types/src/world.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stockton-types/src') 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 { +pub struct World> { pub map: T, } -impl World { +impl> World { /// 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 { -- cgit v1.2.3