mirror of
https://github.com/Campofinale/CampofinaleBackup.git
synced 2025-12-16 10:04:36 +00:00
19 lines
449 B
C#
19 lines
449 B
C#
using Campofinale.Network;
|
|
using Campofinale.Protocol;
|
|
|
|
namespace Campofinale.Packets.Cs
|
|
{
|
|
public class HandleCsEnterDungeon
|
|
{
|
|
|
|
[Server.Handler(CsMsgId.CsEnterDungeon)]
|
|
public static void Handle(Player session, CsMsgId cmdId, Packet packet)
|
|
{
|
|
CsEnterDungeon req = packet.DecodeBody<CsEnterDungeon>();
|
|
session.EnterDungeon(req.DungeonId, req.RacingParam);
|
|
|
|
}
|
|
|
|
}
|
|
}
|