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
51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
|
|
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using Luban;
|
|
|
|
|
|
namespace Server.Config
|
|
{
|
|
public sealed partial class JAMJGameConfig : Luban.BeanBase
|
|
{
|
|
public JAMJGameConfig(ByteBuf _buf)
|
|
{
|
|
Id = _buf.ReadInt();
|
|
Value = _buf.ReadByte();
|
|
}
|
|
|
|
public static JAMJGameConfig DeserializeJAMJGameConfig(ByteBuf _buf)
|
|
{
|
|
return new JAMJGameConfig(_buf);
|
|
}
|
|
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
public readonly int Id;
|
|
/// <summary>
|
|
/// 配置值
|
|
/// </summary>
|
|
public readonly byte Value;
|
|
|
|
public const int __ID__ = -1265520120;
|
|
public override int GetTypeId() => __ID__;
|
|
|
|
|
|
public override string ToString()
|
|
{
|
|
return "{ "
|
|
+ "id:" + Id + ","
|
|
+ "value:" + Value + ","
|
|
+ "}";
|
|
}
|
|
}
|
|
|
|
}
|