Example #1
0
    public void onCreateLinkingCancel(string result)
    {
        Debug.Log("GamePotEventListener::onCreateLinkCancel()" + result);

        if (cbCreateLinking != null)
        {
            cbCreateLinking(NCommon.ResultLinking.CANCELLED);
            cbCreateLinking = null;
        }
        else
        {
            if (GamePotInterface != null)
            {
                GamePotInterface.onCreateLinkingCancel();
            }
        }
    }