blob: aa2726b7f28a43aee1a0359db9e2da4add4522c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef TESTS_H
#define TESTS_H
// all animations or tests are defined here
#include "draw.h"
void test_every_floor(void);
void test_every_pin(void);
void test_sphere(void);
void test_letter(uint64_t letter);
#endif
|