Files
JJBB/Assets/Plugins/YunvaIMScript/Protocol/ImNetStateNotify.cs
2024-08-23 15:49:34 +08:00

18 lines
565 B
C#

using UnityEngine;
using System;
using System.Collections;
namespace YunvaIM
{
public class ImNetStateNotify : YunvaMsgBase
{
public YvNet netState;
public ImNetStateNotify(object Parser)
{
uint parser = (uint)Parser;
netState =(YvNet)YunVaImInterface.parser_get_integer(parser, 1, 0);
YunvaLogPrint.YvDebugLog ("ImNetStateNotify", string.Format ("netState:{0}",netState));
YunVaImInterface.eventQueue.Enqueue(new InvokeEventClass(ProtocolEnum.IM_NET_STATE_NOTIFY, this));
}
}
}