1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

Add INetworkChannelNotify (#329)

This commit is contained in:
hzqst
2025-08-09 05:53:47 +08:00
committed by GAMMACASE
parent f05cb34a6e
commit 4698476049

View File

@ -55,6 +55,12 @@ enum NetChannelBufType_t : int8
BUF_VOICE,
};
abstract_class INetworkChannelNotify
{
public:
virtual void OnShutdownChannel( INetChannel *pChannel ) = 0;
};
abstract_class INetworkMessageProcessingPreFilter
{
public: