1
0
mirror of https://github.com/s00500/SimpleExpressions synced 2024-06-13 18:23:33 +00:00
SimpleExpressions/Shapes.h

48 lines
716 B
C
Raw Normal View History

2017-11-20 13:59:19 +00:00
#ifndef Shapes_h
#define Shapes_h
2017-11-21 12:09:40 +00:00
//***********************************************************************************
//*********************************MOUTHS DEFINES************************************
//***********************************************************************************
2017-11-20 13:59:19 +00:00
2017-11-20 16:49:55 +00:00
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},
};
2017-11-21 12:09:40 +00:00
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},
};
2017-11-20 13:59:19 +00:00
2017-11-21 12:09:40 +00:00
//giving all moths a unique ID
2017-11-20 13:59:19 +00:00
2017-11-21 12:09:40 +00:00
#define M_ZERO 0
#define M_HAPPY_SIMPLE 1
#define M_TESTING 2
2017-11-20 13:59:19 +00:00
#endif