Skip to content

Commit

Permalink
feat/f to block (#1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakul-py authored Oct 10, 2024
1 parent d0c6e15 commit a4c1e10
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions Fonts/block/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -638,17 +638,27 @@ character[4][11]=character[4][13]=character[5][10]=character[5][12]='/';

return character;
}


/*
vs f()
{
vs character = getCharGrid();
//Enter the character grid in ROWS X COLS
vs f()
{
vs character = getCharGrid(11, 20);

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 g()
{
Expand Down

0 comments on commit a4c1e10

Please sign in to comment.