use crate;
use Pos;
pub const NUM_ROWS: usize = 10;
pub const NUM_COLS: usize = 10;
pub const OFFSETS: = ;
pub type ShootFn = fn ;
pub type PlaceFn = fn ;
/// This is supposed to be returned by any `place` function.
///
/// If you want to implement your own [`place`](crate::place) function, you'd have to return this or at least the type it represents.
pub type BoatMap = ;
/// This is supposed to be a parameter to any `shoot` function.
///
/// If you want to implement your own [`shoot`](crate::shoot) function, you'd have to input this or at least the type it represents.
pub type ShotMap = ;