Skip to content

Commit 284b19c

Browse files
committed
chore: minor visual change to the shooting gallery example
1 parent ddfe8f5 commit 284b19c

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

examples/FunShootingGallery.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ public class FunShootingGallery {
3232
* Visual lines of the target (5 visible chars wide × 5 lines tall).
3333
* ANSI colour codes are embedded; only the visible characters count for positioning.
3434
*
35-
* ...
36-
* .###.
37-
* .#*#.
38-
* .###.
39-
* ...
35+
* .....
36+
* ..#####..
37+
* ..##*##..
38+
* ..#####..
39+
* .....
4040
*/
4141
private static final String[] TARGET_VISUAL = {
42-
" " + CY + " " + RESET,
43-
CY + " " + RD + " " + CY + " " + RESET,
44-
CY + " " + RD + " " + YL + " " + RESET + RD + " " + CY + " " + RESET,
45-
CY + " " + RD + " " + CY + " " + RESET,
46-
" " + CY + " " + RESET
42+
" " + CY + " " + RESET,
43+
CY + " " + RD + " " + CY + " " + RESET,
44+
CY + " " + RD + " " + YL + " " + RESET + RD + " " + CY + " " + RESET,
45+
CY + " " + RD + " " + CY + " " + RESET,
46+
" " + CY + " " + RESET
4747
};
4848

4949
/**
@@ -54,11 +54,11 @@ public class FunShootingGallery {
5454
* '*' = 50 pts
5555
*/
5656
private static final String[] TARGET_HITBOX = {
57-
" ... ",
58-
".###.",
59-
".#*#.",
60-
".###.",
61-
" ... "
57+
" ..... ",
58+
"..#####..",
59+
"..##*##..",
60+
"..#####..",
61+
" ..... "
6262
};
6363

6464
private static final String[] PLAY_BUTTON_VISUAL = {

0 commit comments

Comments
 (0)