Заготовка CellularAutomaton

This commit is contained in:
2024-12-03 14:14:43 +03:00
parent dea4067621
commit 7e9540f10c
5 changed files with 58 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
#include "CellularAutomaton.h"
CellularAutomaton::CellularAutomaton(int width, int height) : m_fieldWidth(width), m_fieldHeight(height)
{
}