14 lines
304 B
C#
14 lines
304 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|