21 lines
1 KiB
C
21 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* text.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/04/18 19:54:06 by mcolonna #+# #+# */
|
|
/* Updated: 2024/04/18 20:02:12 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef TEXT_H
|
|
# define TEXT_H
|
|
|
|
# include "includes.h"
|
|
|
|
void display_text(t_point *p, t_assetsmap_id asset);
|
|
void display_uint(t_point *p, unsigned int n);
|
|
|
|
#endif
|