#include "Graph.h" Graph::Graph (int graphSize, int graphUpdateRate) { this->graphSize = graphSize; this->graphUpdateRate = graphUpdateRate; // Раз в секунду graphArray = new int[graphSize]; graphCounter = 0; }