9 lines
128 B
C++
9 lines
128 B
C++
#pragma once
|
|
class CellularAutomaton
|
|
{
|
|
int m_fieldWidth, m_fieldHeight;
|
|
public:
|
|
CellularAutomaton(int width, int height);
|
|
};
|
|
|