mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 19:57:46 +00:00
20 lines
410 B
C#
20 lines
410 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FFXIVClassic_Lobby_Server.dataobjects
|
|||
|
{
|
|||
|
class World
|
|||
|
{
|
|||
|
public ushort id;
|
|||
|
public string address;
|
|||
|
public ushort port;
|
|||
|
public ushort unknown;
|
|||
|
public ushort population;
|
|||
|
public string name;
|
|||
|
public bool isActive;
|
|||
|
}
|
|||
|
}
|