mirror of
https://github.com/Campofinale/CampofinaleBackup.git
synced 2025-12-16 08:24:36 +00:00
26 lines
580 B
C#
26 lines
580 B
C#
using Campofinale.Network;
|
|
using Campofinale.Protocol;
|
|
|
|
namespace Campofinale.Packets.Cs
|
|
{
|
|
public class HandleCsFactoryHsFb
|
|
{
|
|
|
|
[Server.Handler(CsMsgId.CsFactoryHsFb)]
|
|
public static void Handle(Player session, CsMsgId cmdId, Packet packet)
|
|
{
|
|
CsFactoryHsFb req = packet.DecodeBody<CsFactoryHsFb>();
|
|
long curtimestamp = DateTime.UtcNow.ToUnixTimestampMilliseconds();
|
|
|
|
ScFactoryHs hs = new()
|
|
{
|
|
|
|
|
|
};
|
|
session.Send(ScMsgId.ScFactoryHs, hs);
|
|
|
|
}
|
|
|
|
}
|
|
}
|