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
This commit is contained in:
43
ServerData/Team/SettleDeskPack.cs
Normal file
43
ServerData/Team/SettleDeskPack.cs
Normal file
@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
||||
namespace ServerData.Team
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 结束一桌的游戏的包
|
||||
/// </summary>
|
||||
public class SettleDeskPack
|
||||
{
|
||||
public int DeskId;
|
||||
|
||||
public List<UserSingleLiveness> Liveness;
|
||||
|
||||
public List<UserSingleContribution> Contributions;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 用户单个活跃度信息
|
||||
/// </summary>
|
||||
public class UserSingleLiveness
|
||||
{
|
||||
public int UserId;
|
||||
|
||||
public int GameId;
|
||||
|
||||
public int Liveness;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 用户单个贡献度信息
|
||||
/// </summary>
|
||||
public class UserSingleContribution
|
||||
{
|
||||
public int UserId;
|
||||
|
||||
public int GameId;
|
||||
|
||||
public float Contributions;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user