Files
Klemek 3d610e4d1d fix
2024-03-15 18:33:34 +01:00

17 lines
331 B
C++
Executable File

#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