Advertisement
xxeell

Untitled

May 8th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1.  
  2.             int x = ix;
  3.             int y = iy;
  4.  
  5.             for (x++; x < w; x++)
  6.             {
  7.                 if (res[x, y])
  8.                 {
  9.                     for (x--; x > ix; x--)
  10.                     {
  11.                         res[x, y] = true;
  12.                     }
  13.                     break;
  14.                 }
  15.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement