All pastes #1903080 Raw Edit

blocks.hpp

public cpp v1 · immutable
#1903080 ·published 2010-07-18 17:13 UTC
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