diff options
| author | HampusM <hampus@hampusmat.com> | 2026-05-21 17:55:20 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-05-21 17:55:20 +0200 |
| commit | 8022e8998290b067b8aa0cb9cba8ba410826bdab (patch) | |
| tree | 7171e79ce530e03079046ee8fd12167160c45480 /engine/src/windowing | |
| parent | 412cee02c252f91bcf0b70a3f5cc5fca6d2b4c62 (diff) | |
Diffstat (limited to 'engine/src/windowing')
| -rw-r--r-- | engine/src/windowing/keyboard.rs | 2 | ||||
| -rw-r--r-- | engine/src/windowing/mouse.rs | 2 | ||||
| -rw-r--r-- | engine/src/windowing/window.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engine/src/windowing/keyboard.rs b/engine/src/windowing/keyboard.rs index a1c3e22..0bb70a7 100644 --- a/engine/src/windowing/keyboard.rs +++ b/engine/src/windowing/keyboard.rs @@ -1,6 +1,6 @@ use std::collections::HashMap; -use ecs::Sole; +use crate::ecs::Sole; #[derive(Debug, Default, Sole)] pub struct Keyboard diff --git a/engine/src/windowing/mouse.rs b/engine/src/windowing/mouse.rs index 0ea04e2..2a3324e 100644 --- a/engine/src/windowing/mouse.rs +++ b/engine/src/windowing/mouse.rs @@ -1,6 +1,6 @@ use std::collections::HashMap; -use ecs::Sole; +use crate::ecs::Sole; use crate::vector::Vec2; diff --git a/engine/src/windowing/window.rs b/engine/src/windowing/window.rs index 627bdec..72c6342 100644 --- a/engine/src/windowing/window.rs +++ b/engine/src/windowing/window.rs @@ -1,6 +1,6 @@ use std::borrow::Cow; -use ecs::Component; +use crate::ecs::Component; use crate::data_types::dimens::Dimens; |
