15 lines
220 B
C
15 lines
220 B
C
#ifndef _SHAPE_J_H_
|
|
#define _SHAPE_J_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t draw_j();
|
|
uint8_t moveDown_j();
|
|
uint8_t moveRight_j();
|
|
uint8_t moveLeft_j();
|
|
uint8_t rotateLeft_j();
|
|
uint8_t rotateRight_j();
|
|
|
|
|
|
#endif // _SHAPE_J_H_
|