mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 13:34:38 +02:00
initial navmesh stuff
This commit is contained in:
parent
44a76c94af
commit
d72a2af641
19 changed files with 831 additions and 33 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue