2024-03-13 14:52:46 +01:00
|
|
|
#ifndef _SHAPES_H_
|
|
|
|
#define _SHAPES_H_
|
|
|
|
|
2024-03-13 17:35:46 +01:00
|
|
|
#include <stdint.h>
|
2024-03-13 14:52:46 +01:00
|
|
|
|
2024-03-14 14:46:31 +01:00
|
|
|
void shapesInit();
|
2024-03-13 17:35:46 +01:00
|
|
|
void stoneCreate();
|
2024-03-15 10:22:11 +01:00
|
|
|
uint8_t stoneIsValid();
|
2024-03-13 17:35:46 +01:00
|
|
|
uint8_t stoneDraw();
|
|
|
|
uint8_t stoneMoveDown();
|
|
|
|
uint8_t stoneMoveLeft();
|
|
|
|
uint8_t stoneMoveRight();
|
|
|
|
uint8_t stoneRotateLeft();
|
|
|
|
uint8_t stoneRotateRight();
|
2024-03-13 14:52:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
#endif // _SHAPES_H_
|