Files
hjha-server/GlobalSever/Pack/ClubDataChange.cs
xiaoou e9616125ce feat: initial commit - HJHA game server full source
6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) +
game logic (GameFix/GameDAL/ServerData) +
network layer (NetWorkMessage) +
data layer (ObjectModel) +
utilities (MrWu/Core/Config/CloudAPI/dll) +
adapters (zyxAdapter/base)

.NET 8.0 C# solution, 16 projects, 958 source files
2026-07-07 12:02:15 +08:00

38 lines
609 B
C#

/*
* 作者:吴隆健
* 日期: 2019-04-22
* 时间: 14:15
*
*/
using System;
namespace Server.Pack
{
/// <summary>
/// 竞技比赛数据变化包
/// </summary>
public class ClubDataChange
{
/// <summary>
/// 1房卡
/// </summary>
public int style;
/// <summary>
/// 竞技比赛id
/// </summary>
public int clubid;
/// <summary>
/// 值
/// </summary>
public int value;
public override string ToString()
{
return string.Format("[ClubDataChange Style={0}, Clubid={1}, Value={2}]", style, clubid, value);
}
}
}