目录结构调整

This commit is contained in:
2025-08-28 00:20:12 +08:00
parent a19a071c47
commit efb64ce7bc
195 changed files with 344 additions and 677 deletions

View File

@@ -121,30 +121,6 @@ namespace NBC
}
public uint OpCode() { return OuterOpcode.G2C_RepeatLogin; }
}
/// <summary>
/// 通知客户端切换地图
/// </summary>
[ProtoContract]
public partial class G2C_ChangeMap : AMessage, IMessage, IProto
{
public static G2C_ChangeMap Create(Scene scene)
{
return scene.MessagePoolComponent.Rent<G2C_ChangeMap>();
}
public override void Dispose()
{
MapId = default;
Node = default;
#if FANTASY_NET || FANTASY_UNITY
GetScene().MessagePoolComponent.Return<G2C_ChangeMap>(this);
#endif
}
public uint OpCode() { return OuterOpcode.G2C_ChangeMap; }
[ProtoMember(1)]
public int MapId { get; set; }
[ProtoMember(2)]
public int Node { get; set; }
}
[ProtoContract]
public partial class C2Game_GetRoleInfoRequest : AMessage, ICustomRouteRequest, IProto
{