Example #1
0
    void CheckUID()
    {
        string deviceID;

        if (Application.platform == RuntimePlatform.IPhonePlayer)
        {
            deviceID = IOSMgr.GetMsg();
        }
        else
        {
            deviceID = SystemInfo.deviceUniqueIdentifier;
        }

        mCheckEvent = new LoginEvent(new EventDelegate(ReceivedChecking));
        NetMgr.CheckDevice(deviceID, mCheckEvent);
    }