aboutsummaryrefslogtreecommitdiff
path: root/c08/ex03/ft_point.h
blob: 5129a4f949cfd4db23b643a20362bd6b2bafc0e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_point.h                                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <charles.cabergs@gmail.com>       +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2019/07/07 17:12:47 by cacharle          #+#    #+#             */
/*   Updated: 2019/07/11 14:13:47 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef FT_POINT_H
# define FT_POINT_H

typedef struct {
	int x;
	int y;
}		t_point;

#endif