24 lines
412 B
C#
24 lines
412 B
C#
/*
|
|
* @Author: 白哉
|
|
* @Description: 聊天管理
|
|
* @Date: 2026年01月19日 星期一 11:01:05
|
|
* @Modify:
|
|
*/
|
|
|
|
|
|
namespace TH1_Logic.Chat
|
|
{
|
|
public class ChatManager
|
|
{
|
|
public static ChatManager Instance = new ChatManager();
|
|
}
|
|
|
|
|
|
public class ChatItem
|
|
{
|
|
public float Time;
|
|
public ulong SenderId;
|
|
public string SenderName;
|
|
public string Message;
|
|
}
|
|
} |