blob: c4f95b3dd6941b7732a5f9f327329881555bc8fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* loop.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/09 15:09:24 by dkaiser #+# #+# */
/* Updated: 2024/05/14 12:45:26 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "so_long.h"
void loop(void *params)
{
t_game *game;
game = (t_game *)params;
player_process(game);
draw(game);
}
|