22 lines
1.0 KiB
C
22 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* screen.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: qmennen <qmennen@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/04/15 15:30:34 by qmennen #+# #+# */
|
|
/* Updated: 2025/05/14 12:43:47 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SCREEN_H
|
|
# define SCREEN_H
|
|
|
|
# include "cub3d.h"
|
|
|
|
int screen_create(t_game **game);
|
|
int screen_display(t_screen *screen);
|
|
|
|
#endif
|