17 lines
331 B
C++
Executable File
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 |