(&self, app: &mut App)
| 4 | |
| 5 | impl Plugin for BackgroundPlugin { |
| 6 | fn build(&self, app: &mut App) { |
| 7 | app.add_systems(OnEnter(AppState::InGame), (setup_lights, setup_starfield)); |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | pub fn setup_lights(mut commands: Commands) { |
nothing calls this directly
no outgoing calls
no test coverage detected