| 1034 | CallMultiScoreDLL(CDT_EVT_PLAYERKILLED, &pk); |
| 1035 | } |
| 1036 | void ScoreAPIPlayerEntered(int playernum) { |
| 1037 | if (ScoreAPIShouldBail()) |
| 1038 | return; |
| 1039 | CallMultiScoreDLL(CDT_EVT_CONNECT, Players[playernum].callsign); |
| 1040 | } |
| 1041 | void ScoreAPIPlayerLeft(int playernum) { |
| 1042 | if (ScoreAPIShouldBail()) |
| 1043 | return; |
nothing calls this directly
no test coverage detected