tetris/include/puzzle.h

11 lines
108 B
C
Raw Normal View History

#ifndef PUZZLE_H
#define PUZZLE_H
struct puzzle {
int with;
int height;
unsigned char *data;
};
#endif