コード例 #1
0
ファイル: Program.cs プロジェクト: wccrawford/Game-Trainer
        public static void Main(string[] args)
        {
            Console.WriteLine("GTTest!");

            if(args.Length < 1) {
                Console.WriteLine("No process name specified.");
                return;
            }

            GTTest test = new GTTest();

            test.Run(args);

            Console.WriteLine("Done.");
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: wccrawford/Game-Trainer
        public static void Main(string[] args)
        {
            Console.WriteLine("GTTest!");

            if (args.Length < 1)
            {
                Console.WriteLine("No process name specified.");
                return;
            }

            GTTest test = new GTTest();

            test.Run(args);

            Console.WriteLine("Done.");
        }