This commit is contained in:
2024-03-13 14:52:46 +01:00
parent 19be1a6e48
commit f5b0e67056
21 changed files with 391 additions and 18 deletions

26
shape_t.c Normal file
View File

@ -0,0 +1,26 @@
#include "shapes.h"
#include "shape_t.h"
uint8_t draw_t() {
return 0;
}
uint8_t moveDown_t() {
return 0;
}
uint8_t moveLeft_t() {
return 0;
}
uint8_t moveRight_t() {
return 0;
}
uint8_t rotateLeft_t() {
return 0;
}
uint8_t rotateRight_t() {
return 0;
}