Skip to content

Commit 2f1f9d1

Browse files
authored
[feature:- adding x to block (#1179)
1 parent 85c85a5 commit 2f1f9d1

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

Diff for: Fonts/block/block.h

+14-4
Original file line numberDiff line numberDiff line change
@@ -999,17 +999,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
999999
10001000
*/
10011001

1002-
/*
1002+
10031003
vs x()
10041004
{
1005-
vs character = getCharGrid();
1005+
vs character = getCharGrid(11, 20);
10061006

1007-
//Enter the character grid in ROWS X COLS
1007+
character[0] = " .----------------. ";
1008+
character[1] = "| .--------------. |";
1009+
character[2] = "| | ____ ____ | |";
1010+
character[3] = "| | |_ _||_ _| | |";
1011+
character[4] = "| | \\ \\ / / | |";
1012+
character[5] = "| | > `' < | |";
1013+
character[6] = "| | _/ /'`\\ \\_ | |";
1014+
character[7] = "| | |____||____| | |";
1015+
character[8] = "| | | |";
1016+
character[9] = "| '--------------' |";
1017+
character[10]= " '----------------' ";
10081018

10091019
return character;
10101020
}
10111021

1012-
*/
1022+
10131023

10141024

10151025
vs y()

0 commit comments

Comments
 (0)