OneNightDuel/FNAF_Server/Program.cs

9 lines
184 B
C#
Raw Normal View History

using System.Security.Cryptography.X509Certificates;
namespace FNAF_Server;
public class Program {
public static void Main(string[] args) {
Server.Start(9012);
}
}