12 lines
255 B
C#
12 lines
255 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rail
|
|
{
|
|
public class GetGameServerPlayerListResult : EventBase
|
|
{
|
|
public RailID game_server_id = new RailID();
|
|
|
|
public List<GameServerPlayerInfo> server_player_info = new List<GameServerPlayerInfo>();
|
|
}
|
|
}
|