Files
watchy/watchfaces/tetris-2.0/Watchy_Tetris.h
T
2022-04-09 18:31:34 +02:00

17 lines
331 B
C++

#ifndef WATCHY_TETRIS_H
#define WATCHY_TETRIS_H
#include <Watchy.h>
#include "tetris.h"
#include "wta.h"
class WatchyTetris : public WatchySynced
{
using WatchySynced::WatchySynced;
public:
void drawWatchFace();
void drawNumber(int x, int y, int value, int max_digits);
double random();
};
#endif