From 6367a9ba5a549b62f01da61fb50323877b9f52ff Mon Sep 17 00:00:00 2001 From: tcmal Date: Sun, 25 Aug 2024 17:44:24 +0100 Subject: refactor(all): move types to -skeleton --- stockton-contrib/Cargo.toml | 2 +- stockton-contrib/src/flycam.rs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'stockton-contrib') diff --git a/stockton-contrib/Cargo.toml b/stockton-contrib/Cargo.toml index b06afc1..c6630e2 100644 --- a/stockton-contrib/Cargo.toml +++ b/stockton-contrib/Cargo.toml @@ -7,8 +7,8 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +stockton-skeleton = { path = "../stockton-skeleton" } stockton-input = { path = "../stockton-input" } -stockton-types = { path = "../stockton-types" } legion = { version = "^0.3" } [features] diff --git a/stockton-contrib/src/flycam.rs b/stockton-contrib/src/flycam.rs index 591b28e..42b80f6 100644 --- a/stockton-contrib/src/flycam.rs +++ b/stockton-contrib/src/flycam.rs @@ -1,8 +1,7 @@ use std::f32::consts::PI; use stockton_input::{Axis, InputManager, Mouse}; -use stockton_types::components::Transform; -use stockton_types::Vector3; +use stockton_skeleton::{types::Vector3, components::Transform}; use crate::delta_time::Timing; -- cgit v1.2.3