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