1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 12:06:07 +08:00

Update IRecipientFilter and NetChannelBufType_t (#221)

This commit is contained in:
vanz696
2024-03-23 21:24:10 +03:00
committed by GitHub
parent 938566eb1b
commit 63c296e926
2 changed files with 7 additions and 5 deletions

View File

@ -49,10 +49,11 @@ struct NetPacket_t
};
#endif // NET_PACKET_ST_DEFINED
enum NetChannelBufType_t
enum NetChannelBufType_t : int8
{
BUF_RELIABLE = 0,
BUF_UNRELIABLE,
BUF_DEFAULT = -1,
BUF_UNRELIABLE = 0,
BUF_RELIABLE,
BUF_VOICE,
};