makefile for mingw #10; drawAlphabet #8

This commit is contained in:
2017-05-05 17:09:53 +02:00
parent c664c70a37
commit 1a24486ec3
4 changed files with 85 additions and 18 deletions

18
figures.h Normal file
View File

@@ -0,0 +1,18 @@
const char base_figure[6][8] = {{"======="},\
{"I "},\
{"I "},\
{"I "},\
{"I "},\
{"I\\ "}};
const char figure[6][5] = {{" O "},\
{" I "},\
{"\\I "},\
{"\\I/"},\
{"/ "},\
{"/ \\"}};
/* This array represents the layers where the strings
of the current stage(array index) should be printed*/
const int stages[] = {0, 1, 1, 1, 2, 2};