diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:24 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:24 +0100 |
commit | 6367a9ba5a549b62f01da61fb50323877b9f52ff (patch) | |
tree | eb83ed6487f2ec35f9ea1e97124c9a173b8ceef0 /stockton-types/src/lib.rs | |
parent | f84ec1a3e077fa0f2e9cd310b6e32e81f1bc1129 (diff) |
refactor(all): move types to -skeleton
Diffstat (limited to 'stockton-types/src/lib.rs')
-rw-r--r-- | stockton-types/src/lib.rs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/stockton-types/src/lib.rs b/stockton-types/src/lib.rs deleted file mode 100644 index 1b965a0..0000000 --- a/stockton-types/src/lib.rs +++ /dev/null @@ -1,22 +0,0 @@ -//! Common types for all stockton crates. - -extern crate nalgebra_glm as na; - -pub mod components; -pub mod session; - -pub use session::Session; - -/// Alias for convenience -pub type Vector2 = na::Vec2; -/// Alias for convenience -pub type Vector3 = na::Vec3; - -/// Alias for convenience -pub type Vector2i = na::IVec2; - -/// Alias for convenience -pub type Vector3i = na::IVec3; - -/// Alias for convenience -pub type Matrix4 = na::Mat4x4; |