// Jetpac remake using Irrlicht // Copyright Gaz Davidson (gaz@bitplane.net) #ifndef __E_ZX_COLOUR_INCLUDED__ #define __E_ZX_COLOUR_INCLUDED__ // zx spectrum colours from wikipedia, all 15 enum ZXCOLOUR { Black = 0, Blue0 = 0xFF0000be, Blue1 = 0xFF0000FF, Red0 = 0xFFBE0000, Red1 = 0xFFFF0000, Magenta0 = 0xFFbe00be, Magenta1 = 0xFFFF00FF, Green0 = 0xFF00be00, Green1 = 0xFF00ff00, Cyan0 = 0xFF00bebe, Cyan1 = 0xFF00FFFF, Yellow0 = 0xFFbebe00, Yellow1 = 0xFFFFFF00, White0 = 0xFFbebebe, White1 = 0xFFFFFFFF, // for fuel in tank Magenta2 = 0xA0BE00BE }; #endif