pokemon 2.0 skin

This commit is contained in:
Klemek
2021-11-19 21:32:31 +01:00
parent 7d75ef2834
commit ed9a25d056
13 changed files with 29081 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef WATCHY_POKEMON_H
#define WATCHY_POKEMON_H
#include <Watchy.h>
#include "FreeMonoBold10pt7b.h"
#include "FreeMonoBold7pt7b.h"
#include "wta.h"
#define FR
#ifdef FR
#include "pokemon_fr.h"
#else
#include "pokemon.h"
#endif
class WatchyPokemon : public WatchySynced
{
public:
WatchyPokemon();
void drawWatchFace();
double randomDay();
double randomHour();
};
#endif