Initial commit

This commit is contained in:
2026-03-10 16:53:11 -04:00
commit 7c65eb4dcb
12 changed files with 946 additions and 0 deletions

7
src/c/palette_manip.h Normal file
View File

@@ -0,0 +1,7 @@
// TAKEN FROM https://github.com/rebootsramblings/GBitmap-Colour-Palette-Manipulator
#include <pebble.h>
#ifdef PBL_COLOR
void replace_gbitmap_color(GColor color_to_replace, GColor replace_with_color, GBitmap *im, BitmapLayer *bml);
#endif