Example #1
0
bool Extension::OnBlastedBinaryMessageFromPeer(int Subchannel)
{
    return MessageMatches();
}
Example #2
0
bool Extension::OnSentBinaryMessageFromChannel(int Subchannel)
{
    return MessageMatches();
}
Example #3
0
bool Extension::OnSentNumberMessageFromPeer(int Subchannel)
{
    return MessageMatches();
}
Example #4
0
bool Extension::OnBlastedTextMessageFromServer(int Subchannel)
{
    return MessageMatches();
}
Example #5
0
bool Extension::OnBlastedNumberMessageFromChannel(int Subchannel)
{
    return MessageMatches();
}
Example #6
0
bool Extension::OnSentBinaryChannelMessageFromServer(int Subchannel)
{
    return MessageMatches();
}
Example #7
0
bool Extension::OnAnyBlastedChannelMessageFromServer(int Subchannel)
{
    return MessageMatches();
}
Example #8
0
bool Extension::OnAnySentMessageFromPeer(int Subchannel)
{
    return MessageMatches();
}
Example #9
0
bool Extension::OnAnyBlastedMessageFromChannel(int Subchannel)
{
    return MessageMatches();
}
Example #10
0
bool Extension::OnAnyBlastedMessageToPeer(int Subchannel)
{
	return MessageMatches();
}
Example #11
0
bool Extension::OnAnySentMessageToChannel(int Subchannel)
{
	return MessageMatches();
}
Example #12
0
bool Extension::OnSentBinaryMessageToPeer(int Subchannel)
{
	return MessageMatches();
}
Example #13
0
bool Extension::OnBlastedTextMessageToChannel(int Subchannel)
{
	return MessageMatches();
}
Example #14
0
bool Extension::OnSentNumberMessageToChannel(int Subchannel)
{
	return MessageMatches();
}