adding imputs system

This commit is contained in:
2022-10-05 17:08:36 +02:00
commit 3ee3a5899b
15 changed files with 825 additions and 0 deletions

21
test/main.c git.filemode.normal_file
View File

@@ -0,0 +1,21 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/04 17:55:21 by maldavid #+# #+# */
/* Updated: 2022/10/05 16:58:46 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/mlx.h"
int main(void)
{
mlx_init();
mlx_new_window(400, 400, "My window");
mlx_loop();
return (0);
}