option:
Added options for help, debug, save, file using bgoulard lib
structures:
Moved cub3d.h structures to cub3d_struct.h
Added color, dpoint, ipoint, tile, cli, error
Modified t_map, t_player to use previously mentioned struct :
ipoint, dpoint, tyle
22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cub3d_options.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/11/09 01:15:15 by bgoulard #+# #+# */
|
|
/* Updated: 2024/11/09 01:33:17 by bgoulard ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CUB3D_OPTIONS_H
|
|
# define CUB3D_OPTIONS_H
|
|
|
|
void c3_set_file(void *usr_control_struct, const char *arg);
|
|
void c3_set_debug(void *usr_control_struct);
|
|
void c3_set_save(void *usr_control_struct);
|
|
void c3_print_help(void *usr_control_struct);
|
|
|
|
|
|
# endif /* CUB3D_OPTIONS_H */
|