static void Main(string[] args) {
     string[] inputs = Console.ReadLine().Split(' ');
     int W = int.Parse(inputs[0]);
     int H = int.Parse(inputs[1]);
     string IMAGE = Console.ReadLine();
     Game game = new Game(W, H);
     if (args.Length > 0)
         game.debug = true;
     game.DecodeImage(IMAGE);
 }