Заготовка 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

8
lab1/CellularAutomaton.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
class CellularAutomaton
{
int m_fieldWidth, m_fieldHeight;
public:
CellularAutomaton(int width, int height);
};