Watchy/examples/WatchFaces/Tetris/Watchy_Tetris.h

15 lines
253 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"
2022-04-10 12:16:02 -04:00
class WatchyTetris : public WatchyExpanded{
using WatchyExpanded::WatchyExpanded;
2021-01-18 16:09:21 -05:00
public:
WatchyTetris();
void drawWatchFace();
};
2022-04-10 12:16:02 -04:00
#endif