1 2 3 4 5 6 7 8 9 10 11
use nalgebra::{Point2, Vector2}; pub mod multi_tile_grid; pub mod tile_grid; pub mod tile_rect; #[cfg(test)] mod tests {} pub type TileIndex = Point2<isize>; pub type TileIndexOffset = Vector2<isize>;