13 lines
202 B
C#
13 lines
202 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
namespace KTSDK
|
|||
|
{
|
|||
|
public sealed class Message
|
|||
|
{
|
|||
|
public int msgId;
|
|||
|
public string data;
|
|||
|
}
|
|||
|
}
|
|||
|
|