15 lines
220 B
C
15 lines
220 B
C
#ifndef _SHAPE_T_H_
|
|
#define _SHAPE_T_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t draw_t();
|
|
uint8_t moveDown_t();
|
|
uint8_t moveRight_t();
|
|
uint8_t moveLeft_t();
|
|
uint8_t rotateLeft_t();
|
|
uint8_t rotateRight_t();
|
|
|
|
|
|
#endif // _SHAPE_T_H_
|