Watchy/examples/WatchFaces/Tetris/Watchy_Tetris.h

13 lines
208 B
C
Raw Normal View History

2021-01-18 16:09:21 -05:00
#ifndef WATCHY_TETRIS_H
#define WATCHY_TETRIS_H
#include <Watchy.h>
#include "tetris.h"
class WatchyTetris : public Watchy{
public:
using Watchy::Watchy;
2021-01-18 16:09:21 -05:00
void drawWatchFace();
};
#endif