rendered paste body#ifndef BLOCKS_CPP#define BLOCKS_CPP/**************************************** *************** Includes *************** ****************************************/#include "blocks.hpp"/**************************************** ********* Static Declarations ********** ****************************************/static unsigned int Block::totalBlocks = 0;//static list<Block> blockArray;/**************************************** *************** Classes **************** ****************************************/Block::Block(Big_Block *theParent, position thePosition, colour theColour) { this->parent = theParent; this->thePosition = thePosition; this->theColour = theColour; } #endif //BLOCKS_CPP