File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -162,16 +162,22 @@ class Straight : public Fonts
162
162
}
163
163
*/
164
164
165
- /*
166
- char **N()
165
+ char **N ()
167
166
{
168
167
char **character = getCharGrid ();
169
168
170
- //Enter the character grid in ROWS X COLS
169
+ character[1 ][0 ] =' |' ;
170
+ 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 ] =' |' ;
171
177
178
+
172
179
return character;
173
180
}
174
- */
175
181
176
182
/*
177
183
char **O()
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ using namespace ascii;
5
5
6
6
int main ()
7
7
{
8
- Ascii a = Ascii (starwar );
9
- a.print (" M " );
8
+ Ascii a = Ascii (straight );
9
+ a.print (" N " );
10
10
return 0 ;
11
11
}
You can’t perform that action at this time.
0 commit comments