#ifndef Shapes_h #define Shapes_h //*********************************************************************************** //*********************************MOUTHS DEFINES************************************ //*********************************************************************************** const int zeros[7][3] = { {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, }; const int happySimple[7][3] = { {0,0,0}, {0,150,0}, {0,150,0}, {0,150,0}, {0,150,0}, {0,0,0}, {0,0,0}, }; const int testing[7][3] = { {0,0,0}, {0,150,0}, {0,150,0}, {0,150,0}, {0,150,0}, {0,0,0}, {0,0,0}, }; //giving all moths a unique ID #define M_ZERO 0 #define M_HAPPY_SIMPLE 1 #define M_TESTING 2 #endif