| 5 | use crate::entities; |
| 6 | |
| 7 | pub struct Resources { |
| 8 | pub input: Input, |
| 9 | pub turn_state: TurnState, |
| 10 | pub map: Map, |
| 11 | } |
| 12 | |
| 13 | impl Resources { |
| 14 | pub fn new(world: &mut World, map_width: usize, map_height: usize) -> Resources { |
nothing calls this directly
no outgoing calls
no test coverage detected