summaryrefslogtreecommitdiff
path: root/src/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cell.rs b/src/cell.rs
index 9d257ff..bce744b 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -9,8 +9,8 @@ use crate::tileset::Tileset;
#[derive(Debug, Clone)]
pub struct Cell {
pub id: usize,
- pub animation: Animation,
pub destination: Point2<f32>,
+ animation: Animation,
}
impl Operable for Cell {