mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 06:24:38 +02:00
Implemented more packets. Implemented zone grid map.
This commit is contained in:
parent
8f7e7d4c0d
commit
b0ab527550
7 changed files with 174 additions and 1 deletions
|
@ -24,6 +24,7 @@ namespace FFXIVClassic_Lobby_Server
|
|||
private List<ClientConnection> mConnectionList = new List<ClientConnection>();
|
||||
private PacketProcessor mProcessor;
|
||||
private Thread mProcessorThread;
|
||||
private Thread mGameThread;
|
||||
|
||||
#region Socket Handling
|
||||
public bool startServer()
|
||||
|
@ -63,6 +64,8 @@ namespace FFXIVClassic_Lobby_Server
|
|||
mProcessor = new PacketProcessor(mConnectedPlayerList, mConnectionList);
|
||||
mProcessorThread = new Thread(new ThreadStart(mProcessor.update));
|
||||
mProcessorThread.Start();
|
||||
//mGameThread = new Thread(new ThreadStart(mProcessor.update));
|
||||
//mGameThread.Start();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue