Initial commit

This commit is contained in:
EntenKoeniq
2021-07-07 13:36:25 +02:00
commit c332b89bf7
39 changed files with 3743 additions and 0 deletions

28
Server/Program.cs Normal file
View File

@ -0,0 +1,28 @@
using System;
using System.IO;
namespace CoopServer
{
class Program
{
static void Main(string[] args)
{
try
{
Console.Title = "GTACoop:R Server";
if (File.Exists("log.txt"))
{
File.WriteAllText("log.txt", string.Empty);
}
_ = new Server();
}
catch (Exception e)
{
Logging.Error(e.ToString());
Console.ReadLine();
}
}
}
}