RAGECOOP-V/Server/Program.cs

29 lines
567 B
C#
Raw Normal View History

2021-07-07 13:36:25 +02:00
using System;
using System.IO;
namespace CoopServer
{
class Program
{
static void Main(string[] args)
{
try
{
2021-07-12 09:24:31 +02:00
Console.Title = "GTACOOP:R Server";
2021-07-07 13:36:25 +02:00
if (File.Exists("log.txt"))
{
File.WriteAllText("log.txt", string.Empty);
}
_ = new Server();
}
catch (Exception e)
{
Logging.Error(e.ToString());
Console.ReadLine();
}
}
}
}