Skip to content

Commit 795094f

Browse files
committed
Removed test code.
1 parent 5ba1641 commit 795094f

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/tiles/mod.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,6 @@ impl From<UVec2> for TilePos {
5353
}
5454
}
5555

56-
impl From<IVec2> for TilePos {
57-
fn from(v: IVec2) -> Self {
58-
Self {
59-
x: v.x as u32,
60-
y: v.y as u32,
61-
}
62-
}
63-
}
64-
6556
impl From<TilePos> for Vec2 {
6657
fn from(pos: TilePos) -> Self {
6758
Vec2::new(pos.x as f32, pos.y as f32)

0 commit comments

Comments
 (0)