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
|