// Definitions of Constants #ifndef OurConstants_h #define OurConstants_h // Element type definition // Each type value must be unique const WORD LINE = 101U; const WORD RECTANGLE = 102U; const WORD CIRCLE = 103U; const WORD CURVE = 104U; /////////////////////////////////////// // Color values for drawing const COLORREF BLACK = RGB(0,0,0); const COLORREF RED = RGB(255,0,0); const COLORREF GREEN = RGB(0,255,0); const COLORREF BLUE = RGB(0,0,255); /////////////////////////////////// #endif //!defined(OurConstants.h)