tetris/shape_l.h

15 lines
220 B
C
Raw Normal View History

2024-03-13 14:52:46 +01:00
#ifndef _SHAPE_L_H_
#define _SHAPE_L_H_
#include <stdint.h>
uint8_t draw_l();
uint8_t moveDown_l();
uint8_t moveRight_l();
uint8_t moveLeft_l();
uint8_t rotateLeft_l();
uint8_t rotateRight_l();
#endif // _SHAPE_L_H_