xTetris-Game
Loading...
Searching...
No Matches
struct.h
Go to the documentation of this file.
1#ifndef STRUCT_H
2#define STRUCT_H
3
4
5struct Cell {
6 int status;
7};
8typedef struct Cell ** BoardPtr;
9
10struct Move {
11 int piece;
13 int row;
14 int col;
15};
16typedef struct Move * MovePtr;
17
19 int status;
20};
21typedef struct TetrominoCell **** TetrominoPtr;
22
23
24#endif
struct TetrominoCell **** TetrominoPtr
Definition struct.h:21
struct Cell ** BoardPtr
Definition struct.h:8
struct Move * MovePtr
Definition struct.h:16
Definition struct.h:5
int status
Definition struct.h:6
Definition struct.h:10
int row
Definition struct.h:13
int rotation
Definition struct.h:12
int piece
Definition struct.h:11
int col
Definition struct.h:14