aboutsummaryrefslogtreecommitdiff
path: root/stockton-skeleton/src/types.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:24 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:24 +0100
commit6367a9ba5a549b62f01da61fb50323877b9f52ff (patch)
treeeb83ed6487f2ec35f9ea1e97124c9a173b8ceef0 /stockton-skeleton/src/types.rs
parentf84ec1a3e077fa0f2e9cd310b6e32e81f1bc1129 (diff)
refactor(all): move types to -skeleton
Diffstat (limited to 'stockton-skeleton/src/types.rs')
-rw-r--r--stockton-skeleton/src/types.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/stockton-skeleton/src/types.rs b/stockton-skeleton/src/types.rs
index 03c6e37..d3cf316 100644
--- a/stockton-skeleton/src/types.rs
+++ b/stockton-skeleton/src/types.rs
@@ -33,3 +33,11 @@ pub type DynamicAllocator = rendy_memory::DynamicAllocator<back::Backend>;
pub type DynamicBlock = rendy_memory::DynamicBlock<back::Backend>;
pub type RDescriptorSet = rendy_descriptor::DescriptorSet<back::Backend>;
+
+pub type Vector2 = na::Vec2;
+pub type Vector3 = na::Vec3;
+
+pub type Vector2i = na::IVec2;
+pub type Vector3i = na::IVec3;
+
+pub type Matrix4 = na::Mat4x4;