15 lines
220 B
C
15 lines
220 B
C
|
#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_
|