Watchy/examples/WatchFaces/Mario/Watchy_Mario.h

13 lines
199 B
C
Raw Permalink Normal View History

2023-01-12 07:40:27 -05:00
#ifndef WATCHY_MARIO_H
#define WATCHY_MARIO_H
#include <Watchy.h>
#include "mario.h"
class WatchyMario: public Watchy{
using Watchy::Watchy;
public:
void drawWatchFace();
};
#endif