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

16 lines
330 B
C#

using System.Net;
namespace ET.Server
{
public struct NetServerComponentOnRead
{
public Session Session;
public object Message;
}
[ComponentOf(typeof(Scene))]
public class NetServerComponent: Entity, IAwake<IPEndPoint>, IDestroy, IUpdate
{
public AService AService;
}
}