PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Dependents:   YATTT sd_map_test cPong SnowDemo ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers PokittoPalettes.h Source File

PokittoPalettes.h

00001 #ifndef POK_PALETTES_H
00002 #define POK_PALETTES_H
00003 
00004 #include "Pokitto_settings.h "
00005 
00006 extern const unsigned char paletteDefault[];
00007 extern const unsigned char paletteCGA[];
00008 extern const unsigned char paletteNeon[];
00009 extern const unsigned char palettePico[];
00010 extern const unsigned char paletteCopper[];
00011 extern const unsigned char paletteAction[];
00012 extern const unsigned char paletteMagma[];
00013 extern const unsigned char paletteRainbow[];
00014 extern const unsigned char paletteMono[];
00015 extern const unsigned char paletteGameboy[];
00016 extern const unsigned char paletteZXSpec[];
00017 extern const unsigned char paletteDB16[];
00018 
00019 
00020 #define POK_DEFAULT_PALETTE paletteCGA
00021 
00022 #endif
00023 
00024 
00025