Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            try {

            if (args.Length!=1)
              System.Console.WriteLine("usage: cropper <tmx-file>");
            else {

              TmxReader tmx;
              tmx=new TmxReader();

              tmx.Run(args[0]);
            }
              }
              catch (Exception ex) {
            Console.WriteLine(ex.StackTrace);
              }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            try {
                if (args.Length != 1)
                {
                    System.Console.WriteLine("usage: cropper <tmx-file>");
                }
                else
                {
                    TmxReader tmx;
                    tmx = new TmxReader();

                    tmx.Run(args[0]);
                }
            }
            catch (Exception ex) {
                Console.WriteLine(ex.StackTrace);
            }
        }