blob: 9ac88b8c4f1fa41a9a2a7dfccb9b060089519627 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_get_sprite_spawns.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:28:51 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:28:51 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
void
ft_get_spawns(t_cub *cl)
{
ft_get_player_spawn(&cl->plist, cl);
ft_get_sprite_spawn(cl);
}
|