Skip to content

Commit

Permalink
[feature:- adding x to block (#1179)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul-py authored Oct 14, 2024
1 parent 85c85a5 commit 2f1f9d1
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -999,17 +999,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
*/

/*

vs x()
{
vs character = getCharGrid();
vs character = getCharGrid(11, 20);

//Enter the character grid in ROWS X COLS
character[0] = " .----------------. ";
character[1] = "| .--------------. |";
character[2] = "| | ____ ____ | |";
character[3] = "| | |_ _||_ _| | |";
character[4] = "| | \\ \\ / / | |";
character[5] = "| | > `' < | |";
character[6] = "| | _/ /'`\\ \\_ | |";
character[7] = "| | |____||____| | |";
character[8] = "| | | |";
character[9] = "| '--------------' |";
character[10]= " '----------------' ";

return character;
}

*/



vs y()
Expand Down

0 comments on commit 2f1f9d1

Please sign in to comment.