-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft42.class.hpp
More file actions
41 lines (33 loc) · 1.5 KB
/
ft42.class.hpp
File metadata and controls
41 lines (33 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// ************************************************************************** //
// //
// ::: :::::::: //
// ft42.class.hpp :+: :+: :+: //
// +:+ +:+ +:+ //
// By: jmoiroux <jmoiroux@student.42.fr> +#+ +:+ +#+ //
// +#+#+#+#+#+ +#+ //
// Created: 2015/01/26 11:45:31 by jmoiroux #+# #+# //
// Updated: 2015/01/26 11:45:32 by jmoiroux ### ########.fr //
// //
// ************************************************************************** //
#ifndef FT42_CLASS_HPP
# define FT42_CLASS_HPP
# include "main.hpp"
class ft42 {
public:
ft42();
~ft42();
virtual void delData( t_data * d );
virtual void freeAllTab( t_data * d );
static void hillColor_toShow( t_data *d, int y, int x );
virtual void oceanBorder( void );
virtual t_pts ** allocMap2D( void );
static void upperLeft( void * d );
static void upperRight( void * d );
static void lowerRight( void * d );
static void lowerLeft( void * d );
static void print_str(char const * word, float y, float x);
private:
ft42( ft42 const & rSource );
ft42 & operator=( ft42 const & rSource );
};
#endif