Frame/Assets/Scripts/Data/PassiveResponse/S2C_PlayerSwitchRoom.cs

14 lines
304 B
C#
Raw Normal View History

2024-05-05 17:02:33 +08:00
namespace Game.Data
{
public class S2C_PlayerSwitchRoom : PassiveResponse
{
public new S2C_PlayerSwitchRoomInfo data;
public class S2C_PlayerSwitchRoomInfo
{
public string lunId;
public int roomId;
public long uId;
}
}
}