| 26 | |
| 27 | #[derive(Debug, Clone)] |
| 28 | pub struct Map { |
| 29 | plane0: [[u16; MAP_HEIGHT]; MAP_WIDTH], |
| 30 | plane1: [[u16; MAP_HEIGHT]; MAP_WIDTH], |
| 31 | pub name: String, |
| 32 | } |
| 33 | |
| 34 | impl Map { |
| 35 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected