| 1025 | return true; |
| 1026 | } |
| 1027 | void ScoreAPIPlayerKilled(int killer, int killed) { |
| 1028 | if (ScoreAPIShouldBail()) |
| 1029 | return; |
| 1030 | player_killed pk; |
| 1031 | strcpy(pk.killed_name, Players[killed].callsign); |
| 1032 | strcpy(pk.killer_name, Players[killer].callsign); |
| 1033 | |
| 1034 | CallMultiScoreDLL(CDT_EVT_PLAYERKILLED, &pk); |
| 1035 | } |
| 1036 | void ScoreAPIPlayerEntered(int playernum) { |
| 1037 | if (ScoreAPIShouldBail()) |
| 1038 | return; |
no test coverage detected