You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Watchy/examples/WatchFaces/Tetris/Watchy_Tetris.h

13 lines
208 B
C++

#ifndef WATCHY_TETRIS_H
#define WATCHY_TETRIS_H
#include <Watchy.h>
#include "tetris.h"
class WatchyTetris : public Watchy{
public:
using Watchy::Watchy;
void drawWatchFace();
};
#endif