2025-07-17 18:26:28 +08:00

14 lines
329 B
C#

using System.Collections.Generic;
namespace ET.Server
{
[ComponentOf(typeof(Scene))]
public class MessageSender: Entity, IAwake, IDestroy
{
public const long TIMEOUT_TIME = 40 * 1000;
public int RpcId;
public readonly Dictionary<int, MessageSenderStruct> requestCallback = new();
}
}