Skip to content

Commit

Permalink
Merge pull request #732 from moniiccaaa/main
Browse files Browse the repository at this point in the history
Added letter 8 to font amongus
  • Loading branch information
AnshumanMahato authored Oct 24, 2023
2 parents f15f3df + ec62624 commit 8f3d10a
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions Fonts/amongus/amongus.h
Original file line number Diff line number Diff line change
Expand Up @@ -220,16 +220,14 @@ class Amongus : public Fonts
}
*/

/*
char **S()
{
char **character = getCharGrid(ROWS,COLS);
//Enter the character grid in ROWS X COLS

// char **S()
// {
// char **character = getCharGrid(4,5);

return character;
}
*/
// return character;
// }


/*
char **T()
Expand Down Expand Up @@ -717,17 +715,21 @@ class Amongus : public Fonts
*/

/*

char **eight()
{
char **character = getCharGrid(ROWS,COLS);
//Enter the character grid in ROWS X COLS
char **character = getCharGrid(4,5);
character[0][1]=character[0][2]=character[0][3]=character[1][2]=character[2][2]=
character[3][1]=character[3][2]=character[3][3]='_';
character[2][0]=character[3][4]='/';
character[2][4]=character[3][0]='\\';
character[1][0]='(';
character[1][4]=')';

return character;
}

*/


/*
char **nine()
Expand Down

0 comments on commit 8f3d10a

Please sign in to comment.