| 1035 | |
| 1036 | |
| 1037 | void I_NetCmd (void) |
| 1038 | { |
| 1039 | if (doomcom.command == CMD_SEND) |
| 1040 | { |
| 1041 | PacketSend (); |
| 1042 | } |
| 1043 | else if (doomcom.command == CMD_GET) |
| 1044 | { |
| 1045 | PacketGet (); |
| 1046 | } |
| 1047 | else |
| 1048 | I_Error ("Bad net cmd: %i\n",doomcom.command); |
| 1049 | } |
| 1050 | |
| 1051 | void I_NetMessage(const char* text, ...) |
| 1052 | { |
no test coverage detected