(config: ModConfig)
| 169 | }; |
| 170 | |
| 171 | function defaultState(config: ModConfig): ModState { |
| 172 | return { |
| 173 | current_stage_index: 0, |
| 174 | total_stage_count: config.stage_count, |
| 175 | is_finished: false, |
| 176 | completed_targets: [], |
| 177 | }; |
| 178 | } |
| 179 | |
| 180 | export const DEFAULT_MOD_COLLECTION: ModCollection = { |
| 181 | activeId: DEFAULT_MOD_ID, |
no outgoing calls
no test coverage detected