mirror of
https://github.com/supleed2/ELEC50003-P1-CW.git
synced 2024-11-10 01:35:50 +00:00
13 lines
132 B
C
13 lines
132 B
C
|
#ifndef COLOUR_H
|
||
|
#define COLOUR_H
|
||
|
|
||
|
typedef enum {
|
||
|
C_RED,
|
||
|
C_LBLUE,
|
||
|
C_GREEN,
|
||
|
C_PINK,
|
||
|
C_ORANGE
|
||
|
} Colour_t;
|
||
|
|
||
|
#endif
|