Exemplo n.º 1
0
//-----------------------------------------------------------------------------
// Register function for client command filter.
//-----------------------------------------------------------------------------
void RegisterClientCommandFilter(PyObject* pCallable)
{
	s_ClientCommandFilters.RegisterListener(pCallable);
}
Exemplo n.º 2
0
//-----------------------------------------------------------------------------
// Unregister function for say filter.
//-----------------------------------------------------------------------------
void UnregisterSayFilter(PyObject* pCallable)
{
	s_SayFilters.UnregisterListener(pCallable);
}