14 lines
299 B
C#
14 lines
299 B
C#
|
namespace Game.Data
|
|||
|
{
|
|||
|
public class S2C_NewPlayerJoin : PassiveResponse
|
|||
|
{
|
|||
|
public new S2C_NewPlayerJoinInfo data;
|
|||
|
|
|||
|
public class S2C_NewPlayerJoinInfo
|
|||
|
{
|
|||
|
public string lunId;
|
|||
|
public string nickname;
|
|||
|
public int uid;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|