Watchy/examples/WatchFaces/MacPaint/Watchy_MacPaint.h

13 lines
212 B
C
Raw Permalink Normal View History

2021-01-19 00:34:07 -05:00
#ifndef WATCHY_MACPAINT_H
#define WATCHY_MACPAINT_H
#include <Watchy.h>
#include "macpaint.h"
class WatchyMacPaint : public Watchy{
2021-12-30 22:47:38 -05:00
using Watchy::Watchy;
2021-01-19 00:34:07 -05:00
public:
void drawWatchFace();
};
#endif