diff options
Diffstat (limited to 'src/ft_init_weaps.c')
-rw-r--r-- | src/ft_init_weaps.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/ft_init_weaps.c b/src/ft_init_weaps.c new file mode 100644 index 0000000..242b62d --- /dev/null +++ b/src/ft_init_weaps.c @@ -0,0 +1,34 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_init_weaps.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:28:53 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:28:53 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include <libft.h> +#include <cub3d.h> +#include <stddef.h> +#include <stdlib.h> +#include <stdint.h> + +int8_t + ft_init_weaps(t_sprite ***weaps) +{ + uint8_t i; + + if (!(*weaps = (t_sprite**)ft_calloc(2, sizeof(t_sprite*)))) + return (-1); + i = 0; + while (i < 2) + { + if (!(*((*weaps) + i) = (t_sprite*)ft_calloc(1, sizeof(t_sprite)))) + return (-1); + i++; + } + return (0); +} |