增加一些定义

This commit is contained in:
bob
2025-07-14 17:08:18 +08:00
parent e4c3feb033
commit 7cccd2a81c
73 changed files with 629 additions and 20 deletions

View File

@@ -0,0 +1,17 @@
using Fantasy.Async;
using Fantasy.Network.Interface;
using Fantasy.Network.Roaming;
namespace Fantasy;
public sealed class C2Map_PushMessageToClientHandler : Roaming<Terminus, C2Map_PushMessageToClient>
{
protected override async FTask Run(Terminus terminus, C2Map_PushMessageToClient message)
{
terminus.Send(new Map2C_PushMessageToClient()
{
Tag = message.Tag
});
await FTask.CompletedTask;
}
}