Untitled

 avatar
unknown
plain_text
2 years ago
597 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()
        {
            ApplicationConfiguration.Initialize();
            GameServer server = new GameServer();

            // Start the server in a separate thread
            Thread serverThread = new Thread(new ThreadStart(server.Start));
            serverThread.Start();

            Application.Run(new Form1());

        }
    }
}
Editor is loading...