Watchy/examples/WatchFaces/Pokemon/Watchy_Pokemon.h

14 lines
248 B
C++

#ifndef WATCHY_POKEMON_H
#define WATCHY_POKEMON_H
#include <Watchy.h>
#include "pokemon.h"
class WatchyPokemon : public Watchy{
public:
WatchyPokemon();
void drawWatchFace();
void syncNtpTime();
};
#endif