Files
algorithm/lab1/CellularAutomaton.cpp

6 lines
141 B
C++

#include "CellularAutomaton.h"
CellularAutomaton::CellularAutomaton(int width, int height) : m_fieldWidth(width), m_fieldHeight(height)
{
}