Untitled
unknown
plain_text
2 years ago
620 B
3
Indexable
using TicTacToe; namespace Piskvorky_JanNeuC3a { internal static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { // To customize application configuration such as set high DPI settings or default font, // see https://aka.ms/applicationconfiguration. ApplicationConfiguration.Initialize(); GameServer server = new GameServer(); server.Start(); Application.Run(new Form1()); } } }
Editor is loading...