Add INetworkMessageProcessingPreFilter::FilterMessage comment

This commit is contained in:
GAMMACASE 2024-04-24 18:50:33 +03:00
parent aaaaaf040b
commit c1d5e34553

View File

@ -58,6 +58,7 @@ enum NetChannelBufType_t : int8
abstract_class INetworkMessageProcessingPreFilter
{
public:
// Filter incoming messages from the netchan, return true to filter out (block) the further processing of the message
virtual bool FilterMessage( INetworkSerializable *pNetMessage, const void *pData, INetChannel *pChannel ) = 0;
};