6 lines
141 B
C++
6 lines
141 B
C++
#include "CellularAutomaton.h"
|
|
|
|
CellularAutomaton::CellularAutomaton(int width, int height) : m_fieldWidth(width), m_fieldHeight(height)
|
|
{
|
|
}
|