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 69da4a9 commit 0baa001Copy full SHA for 0baa001
Fonts/Straight/straight.h
@@ -162,16 +162,22 @@ class Straight : public Fonts
162
}
163
*/
164
165
- /*
166
- char **N()
+char **N()
167
{
168
char **character = getCharGrid();
169
170
- //Enter the character grid in ROWS X COLS
+ character[1][0] ='|';
+ character[1][1] ='\\';
171
+ character[1][2] =' ';
172
+ character[1][3] ='|';
173
+ character[2][0] ='|';
174
+ character[2][1] =' ';
175
+ character[2][2] ='\\';
176
+ character[2][3] ='|';
177
178
+
179
return character;
180
- */
181
182
/*
183
char **O()
example.cpp
@@ -6,6 +6,6 @@ using namespace ascii;
6
int main()
7
8
Ascii a = Ascii(straight);
9
- a.print("u");
+ a.print("N");
10
return 0;
11
0 commit comments