Skip to content

Commit

Permalink
M to font block (#1158)
Browse files Browse the repository at this point in the history
* feat/add-m-to-font-block

* feat/add-m-to-font-block
  • Loading branch information
nakul-py authored Oct 12, 2024
1 parent 0b3891f commit 43b55e4
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 @@ -767,17 +767,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';
*/

/*

vs m()
{
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 n()
Expand Down

0 comments on commit 43b55e4

Please sign in to comment.