-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScenar7.class.hpp
43 lines (32 loc) · 1.38 KB
/
Scenar7.class.hpp
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
42
43
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Scenar7.class.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vjacquie <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/01/27 17:13:25 by vjacquie #+# #+# */
/* Updated: 2015/01/29 13:29:39 by vjacquie ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SCENAR7_CLASS_HPP
# define SCENAR7_CLASS_HPP
# include "main.hpp"
# include "ft42.class.hpp"
class Scenar7 : public ft42 {
private:
public:
t_data * d;
Scenar7( void );
~Scenar7( void );
void InitWater( void );
void upWater( void );
void go( void );
private:
Scenar7( Scenar7 const & src );
Scenar7 & operator=( Scenar7 const & rhs );
void resetChecked( t_data * d );
int Clamp(int x, int min, int max);
void rUpWater(t_data * d, int z, int y, int x, bool line);//, bool checked);
};
#endif