Sanady

Untitled

Mar 12th, 2018
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. void drawAttackGrid()
  2. {
  3.     int i, j;
  4.     for(i = 0; i < GRID_SIZE; i++)
  5.     {
  6.         for(j = 0; j < GRID_SIZE; j++)
  7.         {
  8.             printf("~ ");
  9.         }
  10.         printf("\n");
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment