aboutsummaryrefslogtreecommitdiff
path: root/stockton-types/src/lib.rs
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
commit2111c1248b08236a839dcf22036f92735bceb31c (patch)
tree9313da344b7134a913d1d917162e55b35fe1e74f /stockton-types/src/lib.rs
parent102e166b040030b590df83888a1d1a47d0130f10 (diff)
chore(all): style formatting and clippy fixes
Diffstat (limited to 'stockton-types/src/lib.rs')
-rw-r--r--stockton-types/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/stockton-types/src/lib.rs b/stockton-types/src/lib.rs
index bf690f1..ee01019 100644
--- a/stockton-types/src/lib.rs
+++ b/stockton-types/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright (C) Oscar Shrimpton 2019
+// Copyright (C) Oscar Shrimpton 2019
// This program is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
@@ -14,8 +14,8 @@
// with this program. If not, see <http://www.gnu.org/licenses/>.
//! Common types for all stockton crates.
-extern crate stockton_levels;
extern crate nalgebra_glm as na;
+extern crate stockton_levels;
pub mod world;
pub use world::World;
@@ -32,4 +32,4 @@ pub type Vector2i = na::IVec2;
pub type Vector3i = na::IVec3;
/// Alias for convenience
-pub type Matrix4 = na::Mat4x4; \ No newline at end of file
+pub type Matrix4 = na::Mat4x4;