From 663d49c23995e5c897b85ff6fd9ad4b5e0aa351d Mon Sep 17 00:00:00 2001 From: moniiccaaa Date: Tue, 24 Oct 2023 14:43:42 +0530 Subject: [PATCH 1/2] Added character C to font amongus --- Fonts/amongus/amongus.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Fonts/amongus/amongus.h b/Fonts/amongus/amongus.h index 16beaaec..91f267b9 100644 --- a/Fonts/amongus/amongus.h +++ b/Fonts/amongus/amongus.h @@ -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() { From 536905433a5cbc675d72de33e90834f678e79cb7 Mon Sep 17 00:00:00 2001 From: moniiccaaa Date: Tue, 24 Oct 2023 14:48:03 +0530 Subject: [PATCH 2/2] Made updates in amongus --- example.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example.cpp b/example.cpp index 50946089..f9a38661 100644 --- a/example.cpp +++ b/example.cpp @@ -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; } \ No newline at end of file