15 lines
220 B
C
15 lines
220 B
C
#ifndef _SHAPE_S_H_
|
|
#define _SHAPE_S_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t draw_s();
|
|
uint8_t moveDown_s();
|
|
uint8_t moveRight_s();
|
|
uint8_t moveLeft_s();
|
|
uint8_t rotateLeft_s();
|
|
uint8_t rotateRight_s();
|
|
|
|
|
|
#endif // _SHAPE_S_H_
|