added rlutil.h

This commit is contained in:
2019-11-05 23:02:16 -07:00
parent 41c1116d22
commit 9204af78c9
109 changed files with 4146 additions and 532 deletions

View File

@@ -3,3 +3,24 @@
//
#include "PatternAcorn.hpp"
PatternAcorn::PatternAcorn() :
X(9), Y(5)
{
for (int i = 0; i < Y; i++)
{
for (int j = 0; j < X; j++)
{
cells[i][j] = false;
}
}
cells[3][2] = true;
cells[3][5] = true;
cells[3][6] = true;
cells[3][7] = true;
cells[1][2] = true;
cells[2][4] = true;
cells[3][1] = true;
}