Watchy/examples/WatchFaces/MacPaint/Watchy_MacPaint.h

14 lines
237 B
C
Raw 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"
2022-04-10 12:16:02 -04:00
class WatchyMacPaint : public WatchyExpanded{
using WatchyExpanded::WatchyExpanded;
2021-01-19 00:34:07 -05:00
public:
void drawWatchFace();
};
2022-04-10 12:16:02 -04:00
#endif