initial navmesh stuff

This commit is contained in:
Tahir Akhlaq 2017-05-27 02:17:25 +01:00
parent 44a76c94af
commit d72a2af641
19 changed files with 831 additions and 33 deletions

View file

@ -16,6 +16,8 @@ namespace FFXIVClassic_Map_Server
class Program
{
public static Logger Log;
public static Server Server;
public static Random Random;
static void Main(string[] args)
{
@ -55,9 +57,10 @@ namespace FFXIVClassic_Map_Server
//Start server if A-OK
if (startServer)
{
Server server = new Server();
Random = new Random();
Server = new Server();
server.StartServer();
Server.StartServer();
while (startServer)
{