miduo_client/Assets/LuaFramework/Scripts/SDK/Message.cs

13 lines
200 B
C#
Raw Normal View History

2020-05-09 13:31:21 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2020-07-15 13:44:37 +08:00
namespace SDK
2020-05-09 13:31:21 +08:00
{
public sealed class Message
{
public int msgId;
public string data;
}
}