tetris/include/puzzle.h
Arkadiusz Rychliński cb7ab67abd Clumsy animation
Program can change the content of the surface.
2024-04-07 12:46:33 +02:00

11 lines
108 B
C

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