Exemplo n.º 1
0
    void CancleSoldOut(int userCode, int charType)
    {
        List <int> SendList = new List <int> ();

        foreach (int code in GameUserList)
        {
            if (code != -1)
            {
                SendList.Add(code);
            }
        }

        hostController.SendDataToCode(SendList.ToArray(), "CancelSoldOut," + charType);
    }