27 lines
271 B
C
27 lines
271 B
C
#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;
|
|
}
|