fix fmt
All checks were successful
Rust Checks / checks (push) Successful in 3m7s
Rust Checks / checks (pull_request) Successful in 3m4s

This commit is contained in:
CoCo_Sol 2024-03-09 14:22:33 +01:00
parent f8eb587f9f
commit ccb9fe5c81

View file

@ -42,18 +42,9 @@ impl Tile {
/// this function in the future.
pub const fn get_image_size(&self) -> Vec2 {
match self {
Self::Grass => Vec2 {
x: 184.0,
y: 164.0,
},
Self::Forest => Vec2 {
x: 184.0,
y: 138.0,
},
Self::Hill => Vec2 {
x: 184.0,
y: 181.0,
},
Self::Grass => Vec2 { x: 184.0, y: 164.0 },
Self::Forest => Vec2 { x: 184.0, y: 138.0 },
Self::Hill => Vec2 { x: 184.0, y: 181.0 },
}
}
}