diff options
| author | troido <troido@protonmail.com> | 2020-02-14 14:36:32 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-02-14 14:36:32 +0100 |
| commit | 4a4cdf7d148be0a2a756f323d27c0ee5b7976438 (patch) | |
| tree | 7add0a0d735f93cb1fce6ae4f0c476a0d550a3ee /src/systems/moving.rs | |
| parent | 7821febc8ee4c89ca1825054e0baf39eea3a0380 (diff) | |
extract the state to save
Diffstat (limited to 'src/systems/moving.rs')
| -rw-r--r-- | src/systems/moving.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/systems/moving.rs b/src/systems/moving.rs index 3e7803d..f5c1b4a 100644 --- a/src/systems/moving.rs +++ b/src/systems/moving.rs @@ -11,9 +11,9 @@ use specs::{ Write }; -use super::super::pos::Pos; +use crate::pos::Pos; -use super::super::components::{ +use crate::components::{ Controller, Blocking, Position, @@ -21,11 +21,11 @@ use super::super::components::{ Moved }; -use super::super::controls::{ +use crate::controls::{ Control }; -use super::super::resources::{ +use crate::resources::{ Size, Ground }; |
