Watchy/examples/WatchFaces/Pokemon/Watchy_Pokemon.h

14 lines
233 B
C
Raw Normal View History

2021-12-30 23:16:03 -05:00
#ifndef WATCHY_POKEMON_H
#define WATCHY_POKEMON_H
#include <Watchy.h>
#include "pokemon.h"
2022-04-10 12:16:02 -04:00
class WatchyPokemon : public WatchyExpanded{
using WatchyExpanded::WatchyExpanded;
2021-12-30 23:16:03 -05:00
public:
void drawWatchFace();
};
2022-04-10 12:16:02 -04:00
#endif