18 lines
1,008 B
C
18 lines
1,008 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* color.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <mcolonna@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/01 17:04:56 by mcolonna #+# #+# */
|
|
/* Updated: 2024/10/15 16:26:52 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "map.h"
|
|
|
|
t_color color_from_rgb(int red, int green, int blue)
|
|
{
|
|
return (red << 16 | green << 8 | blue);
|
|
}
|