| 3918 | } |
| 3919 | |
| 3920 | void Cargo::arrive(GameState &state) |
| 3921 | { |
| 3922 | bool cargoArrived; |
| 3923 | bool bioArrived; |
| 3924 | bool recoveryArrived; |
| 3925 | bool transferArrived; |
| 3926 | std::set<StateRef<Organisation>> suppliers; |
| 3927 | arrive(state, cargoArrived, bioArrived, recoveryArrived, transferArrived, suppliers); |
| 3928 | } |
| 3929 | |
| 3930 | void Cargo::arrive(GameState &state, bool &cargoArrived, bool &bioArrived, bool &recoveryArrived, |
| 3931 | bool &transferArrived, std::set<StateRef<Organisation>> &suppliers) |
no test coverage detected