-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpose.c
More file actions
21 lines (19 loc) · 1.09 KB
/
Copy pathexpose.c
File metadata and controls
21 lines (19 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* expose.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mlegendr <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/06 10:52:11 by mlegendr #+# #+# */
/* Updated: 2014/12/08 16:59:52 by mlegendr ### ########.fr */
/* */
/* ************************************************************************** */
#include "wolf3d.h"
int expose(t_env *env)
{
mlx_put_image_to_window(env->mlx_ptr, env->win,
env->aliased_img->ptr, 0, 0);
mlx_put_image_to_window(env->mlx_ptr, env->win, env->minimap->ptr, 804, 20);
return (0);
}