| 179 | /////////////////////////////////////////// |
| 180 | |
| 181 | void systems_step() { |
| 182 | for (int32_t i = 0; i < systems.count; i++) |
| 183 | system_execute(&systems[i]); |
| 184 | } |
| 185 | |
| 186 | /////////////////////////////////////////// |
| 187 |
nothing calls this directly
no test coverage detected