Hi This my first little game in Pokitto. Im a fresh in C++ So, Wishing your advise!!!!!

Dependencies:   PokittoLib

Revision:
0:eff664bec7e0
Child:
2:7af6d9415495
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/palette.h	Sat Mar 17 14:28:40 2018 +0000
@@ -0,0 +1,29 @@
+/**************************************************************************/
+/*!
+    @file     palette.h
+    @author
+
+    @section
+
+
+*/
+/**************************************************************************/
+
+#ifndef PALETTE_H
+#define PALETTE_H
+
+int16_t gameConditon = 0; //0:title 1:playgame 2:endgame
+//Total colors 11
+const uint16_t playgame_pal[]= {
+0,65535,35953,55298,22529,51071,21407,2066,2016,65141,43264,20482,
+};
+#define PLAYGAME_INVISIBLE_COLOR 8;
+
+
+
+const uint16_t titlegame_pal[] = {
+65535,0,32122,527,330,38394,27605,21330,64456,57987,37184,26944,10432,0,3,65535,
+};
+
+
+#endif