15 lines
220 B
C
15 lines
220 B
C
|
#ifndef _SHAPE_Z_H_
|
||
|
#define _SHAPE_Z_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
uint8_t draw_z();
|
||
|
uint8_t moveDown_z();
|
||
|
uint8_t moveRight_z();
|
||
|
uint8_t moveLeft_z();
|
||
|
uint8_t rotateLeft_z();
|
||
|
uint8_t rotateRight_z();
|
||
|
|
||
|
|
||
|
#endif // _SHAPE_Z_H_
|