diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
commit | 2111c1248b08236a839dcf22036f92735bceb31c (patch) | |
tree | 9313da344b7134a913d1d917162e55b35fe1e74f /stockton-levels/src/helpers.rs | |
parent | 102e166b040030b590df83888a1d1a47d0130f10 (diff) |
chore(all): style formatting and clippy fixes
Diffstat (limited to 'stockton-levels/src/helpers.rs')
-rw-r--r-- | stockton-levels/src/helpers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stockton-levels/src/helpers.rs b/stockton-levels/src/helpers.rs index c3e6c80..91a672a 100644 --- a/stockton-levels/src/helpers.rs +++ b/stockton-levels/src/helpers.rs @@ -68,4 +68,4 @@ pub fn slice_to_vec3i(slice: &[u8]) -> Vector3<i32> { /// If slice isn't 8 bytes long. pub fn slice_to_vec2ui(slice: &[u8]) -> Vector2<u32> { Vector2::new(slice_to_u32(&slice[0..4]), slice_to_u32(&slice[4..8])) -}
\ No newline at end of file +} |