tetris/shape_s.c
2024-03-13 14:52:46 +01:00

27 lines
271 B
C

#include "shapes.h"
#include "shape_s.h"
uint8_t draw_s() {
return 0;
}
uint8_t moveDown_s() {
return 0;
}
uint8_t moveLeft_s() {
return 0;
}
uint8_t moveRight_s() {
return 0;
}
uint8_t rotateLeft_s() {
return 0;
}
uint8_t rotateRight_s() {
return 0;
}