mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 05:54:50 +02:00
Moved packet structures to common.
This commit is contained in:
parent
d5f0cbef8c
commit
c67f74130f
169 changed files with 3939 additions and 919 deletions
16
FFXIVClassic Proxy Server/DataObjects/ZoneServer.cs
Normal file
16
FFXIVClassic Proxy Server/DataObjects/ZoneServer.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FFXIVClassic_World_Server.DataObjects
|
||||
{
|
||||
class ZoneServer
|
||||
{
|
||||
public string zoneServerIp;
|
||||
public int zoneServerPort;
|
||||
public Socket zoneServerConnection;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue