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
38 lines
609 B
C#
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);
|
|
}
|
|
|
|
}
|
|
}
|