42-archive/fillit/includes/fillit.h
2016-08-29 00:36:01 +02:00

15 lines
207 B
C

#ifndef FILLIT_H
# include <fcntl.h>
# include <stdio.h>
# include "libft.h"
# define FILLIT_H
# define BUF_SIZE 32
typedef struct s_tetrim
{
char id;
int pos[3][2];
int placed;
} t_tetrim;
#endif