We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82d8b63 commit 6464c71Copy full SHA for 6464c71
Fonts/Straight/straight.h
@@ -114,16 +114,19 @@ class Straight : public Fonts
114
return character;
115
}
116
117
- /*
+
118
char **J()
119
{
120
char **character = getCharGrid(ROWS,COLS);
121
-
122
- //Enter the character grid in ROWS X COLS
+ character[0][0] = character[0][1] = ' ';
123
+ character[1][0] = character[1][1] = '_';
124
+ character[1][2] = ')';
125
+ character[0][2] ='|';
126
127
128
- */
129
130
131
/*
132
char **K()
example.cpp
@@ -5,7 +5,7 @@ using namespace ascii;
5
6
int main()
7
8
- Ascii a = Ascii(boomer);
9
- a.print("l");
+ Ascii a = Ascii(straight);
+ a.print("J");
10
return 0;
11
0 commit comments