Type Alias battleship_bot::ShotMap

source ·
pub type ShotMap = [[Option<Shot>; 10]; 10];
Expand description

This is supposed to be a parameter to any shoot function.

If you want to implement your own shoot function, you’d have to input this or at least the type it represents.