mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
23 lines
617 B
C#
23 lines
617 B
C#
using EggLink.DanhengServer.Proto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Server.Packet.Send.ChessRogue
|
|
{
|
|
public class PacketChessRogueUpdateActionPointScNotify : BasePacket
|
|
{
|
|
public PacketChessRogueUpdateActionPointScNotify(int actionPoint) : base(CmdIds.ChessRogueUpdateActionPointScNotify)
|
|
{
|
|
var proto = new ChessRogueUpdateActionPointScNotify()
|
|
{
|
|
ActionPoint = actionPoint,
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|
|
}
|