Watchy/examples/WatchFaces/Pokemon/Watchy_Pokemon.h

13 lines
208 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"
class WatchyPokemon : public Watchy{
using Watchy::Watchy;
public:
void drawWatchFace();
};
2021-01-05 00:36:37 -05:00
#endif