Skip to content

Commit

Permalink
Merge pull request #762 from moniiccaaa/main
Browse files Browse the repository at this point in the history
Added Character "C" of font <amongus>
  • Loading branch information
AnshumanMahato authored Oct 24, 2023
2 parents b8dd1cd + 5369054 commit 39545ed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions Fonts/amongus/amongus.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,21 @@ class Amongus : public Fonts
}


/*

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

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

return character;
}
*/


/*
char **D()
{
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(banner);
a.print("l");
Ascii a = Ascii(straight);
a.print("Y");
return 0;
}

0 comments on commit 39545ed

Please sign in to comment.