Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void drawAttackGrid()
- {
- int i, j;
- printf(" 0 1 2 3 4 5 6 7 8 9\n");
- for(i = 0; i < GRID_SIZE; i++)
- {
- printf("%d | ", i);
- for(j = 0; j < GRID_SIZE; j++)
- {
- printf(". ");
- }
- printf("\n");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment