Esempio n. 1
0
void ASI::DisconnectFromReceiver(CRef& src, int emitter, CRef& target)
{
    Component* pComponent = src.GetInstance();
    if (pComponent != NULL)
    {
        pComponent->DisconnectFromReceiver(emitter, target);
        src.ReleaseInstance();
    }
}