14 lines
232 B
C
14 lines
232 B
C
|
#ifndef ORIENTATION_H_
|
||
|
#define ORIENTATION_H_
|
||
|
|
||
|
typedef enum tetris_orientation_t
|
||
|
{
|
||
|
TETRIS_ORIENTATION_0,
|
||
|
TETRIS_ORIENTATION_90,
|
||
|
TETRIS_ORIENTATION_180,
|
||
|
TETRIS_ORIENTATION_270
|
||
|
}
|
||
|
tetris_orientation_t;
|
||
|
|
||
|
#endif /* ORIENTATION_H_ */
|