20 lines
335 B
C++
20 lines
335 B
C++
//
|
|
// Created by Brady Bodily on 11/5/19.
|
|
//
|
|
|
|
#include "PatternBlinker.hpp"
|
|
|
|
PatternBlinker::PatternBlinker() :
|
|
X(5), Y(5)
|
|
{
|
|
for (int i = 0; i < Y; i++)
|
|
{
|
|
for (int j = 0; j < X; j++)
|
|
{
|
|
cells[i][j] = false;
|
|
}
|
|
}
|
|
cells[2][1] = true;
|
|
cells[2][2] = true;
|
|
cells[2][3] = true;
|
|
} |