This repository has been archived on 2024-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
game-ctrl-01/shape_o.h
2024-03-13 14:52:46 +01:00

15 lines
220 B
C

#ifndef _SHAPE_O_H_
#define _SHAPE_O_H_
#include <stdint.h>
uint8_t draw_o();
uint8_t moveDown_o();
uint8_t moveRight_o();
uint8_t moveLeft_o();
uint8_t rotateLeft_o();
uint8_t rotateRight_o();
#endif // _SHAPE_O_H_