summaryrefslogtreecommitdiff
path: root/src/to_clt/obj.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/to_clt/obj.rs')
-rw-r--r--src/to_clt/obj.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/to_clt/obj.rs b/src/to_clt/obj.rs
index 9e88fff..1b605cc 100644
--- a/src/to_clt/obj.rs
+++ b/src/to_clt/obj.rs
@@ -16,8 +16,8 @@ pub struct ObjProps {
pub max_hp: u16, // player only
pub collide_with_nodes: bool,
pub weight: f32, // deprecated
- pub collision_box: ([f32; 3], [f32; 3]),
- pub selection_box: ([f32; 3], [f32; 3]),
+ pub collision_box: RangeInclusive<[f32; 3]>,
+ pub selection_box: RangeInclusive<[f32; 3]>,
pub pointable: bool,
pub visual: ObjVisual,
pub visual_size: [f32; 3],