Load() public method

public Load ( ) : void
return void
Esempio n. 1
0
        static void Main(string[] args)
        {
            try
            {
                AllocConsole();
                Console.WriteLine("Main funct!");
                var csgoProcess = new CSGOProcess();
                csgoProcess.Load();

                //var uithread = new Thread(start);
                //uithread.Start();
                csgoProcess.Start();
                start();
            }
            catch (Exception e)
            {
                Console.WriteLine( e);
            }

            Thread.Sleep(Timeout.Infinite);
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            try
            {
                AllocConsole();
                Console.WriteLine("Main funct!");
                var csgoProcess = new CSGOProcess();
                csgoProcess.Load();

                //var uithread = new Thread(start);
                //uithread.Start();
                csgoProcess.Start();
                start();
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
            }

            Thread.Sleep(Timeout.Infinite);
        }