Inital Commit

This commit is contained in:
SilicaAndPina 2020-09-29 14:33:36 +13:00
parent fc2b0206d6
commit e8e0a0a519
145 changed files with 68819 additions and 0 deletions

View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Sockets;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Horse_Isle_Server
{
class Program
{
static void Main(string[] args)
{
Directory.SetCurrentDirectory(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location));
ConfigReader.OpenConfig();
Database.OpenDatabase();
}
}
}