Files
TEngine/Assets/GameScripts/DotNet/Model/Server/Module/Message/ActorOuterComponent.cs
ALEXTANG 336d4b2eb9 [+] 接入ET8服务端
[+] 接入ET8服务端
2023-07-13 12:23:48 +08:00

19 lines
501 B
C#

using System.Collections.Generic;
using System.Net;
namespace ET.Server
{
[ComponentOf(typeof(Scene))]
public class ActorOuterComponent: Entity, IAwake<IPEndPoint>, IUpdate, IDestroy
{
public const long TIMEOUT_TIME = 40 * 1000;
public int RpcId;
public readonly Dictionary<int, ActorMessageSender> requestCallback = new();
public AService AService;
public NetworkProtocol InnerProtocol = NetworkProtocol.KCP;
}
}