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

Add INetworkChannelNotify (#329)

This commit is contained in:
hzqst
2025-08-09 05:53:47 +08:00
committed by GitHub
parent 02f47011ee
commit c66132b917

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: