14 lines
186 B
C++
14 lines
186 B
C++
#ifndef WATCHY_BELOW_H
|
|
#define WATCHY_BELOW_H
|
|
|
|
#include <Watchy.h>
|
|
#include "below.h"
|
|
|
|
class WatchyBelow : public Watchy
|
|
{
|
|
public:
|
|
WatchyBelow();
|
|
void drawWatchFace();
|
|
};
|
|
|
|
#endif |