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-input/Cargo.toml | 2 +- stockton-input/src/mouse.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'stockton-input') diff --git a/stockton-input/Cargo.toml b/stockton-input/Cargo.toml index 57ea6e1..92fcaac 100644 --- a/stockton-input/Cargo.toml +++ b/stockton-input/Cargo.toml @@ -5,5 +5,5 @@ authors = ["Oscar Shrimpton "] edition = "2018" [dependencies] -stockton-types = { path = "../stockton-types" } +stockton-skeleton = { path = "../stockton-skeleton" } egui = "^0.2" diff --git a/stockton-input/src/mouse.rs b/stockton-input/src/mouse.rs index ed02989..fe3efd9 100644 --- a/stockton-input/src/mouse.rs +++ b/stockton-input/src/mouse.rs @@ -1,4 +1,4 @@ -use stockton_types::Vector2; +use stockton_skeleton::types::Vector2; #[derive(Debug, Clone)] pub struct Mouse { -- cgit v1.2.3