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

14
shape_i.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef _SHAPE_I_H_
#define _SHAPE_I_H_
#include <stdint.h>
uint8_t draw_i();
uint8_t moveDown_i();
uint8_t moveRight_i();
uint8_t moveLeft_i();
uint8_t rotateLeft_i();
uint8_t rotateRight_i();
#endif // _SHAPE_I_H_