Skip to content

Commit

Permalink
Merge pull request #828 from Sukriti-Rai/main
Browse files Browse the repository at this point in the history
added P in amongus
  • Loading branch information
AnshumanMahato authored Oct 25, 2023
2 parents 0bf75ef + 2ff7a00 commit 8eb53af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions Fonts/amongus/amongus.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,16 +216,21 @@ class Amongus : public Fonts
}
*/

/*

char **P()
{
char **character = getCharGrid(ROWS,COLS);
char **character = getCharGrid(4,6);

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

return character;
}
*/


/*
char **Q()
Expand Down
4 changes: 2 additions & 2 deletions example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ using namespace ascii;

int main()
{
Ascii a = Ascii(block);
a.print("4");
Ascii a = Ascii(amongus);
a.print("P");
return 0;
}

0 comments on commit 8eb53af

Please sign in to comment.