-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scenar4.class.hpp
40 lines (33 loc) · 1.33 KB
/
Scenar4.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
// ************************************************************************** //
// //
// ::: :::::::: //
// Scenar4.class.hpp :+: :+: :+: //
// +:+ +:+ +:+ //
// By: jmoiroux <[email protected]> +#+ +:+ +#+ //
// +#+#+#+#+#+ +#+ //
// Created: 2015/01/29 19:00:15 by jmoiroux #+# #+# //
// Updated: 2015/01/29 19:00:15 by jmoiroux ### ########.fr //
// //
// ************************************************************************** //
#ifndef SCENAR4_CLASS_HPP
# define SCENAR4_CLASS_HPP
# include "main.hpp"
# include "ft42.class.hpp"
class Scenar4 : public ft42 {
public:
t_data * d;
t_pts ** purge;
bool firstCall;
int downZ;
Scenar4();
~Scenar4();
void downWater( void );
void reDownX( int z, int y, int x);
void go( void );
void initWater( void);
void resetChecked( void );
private:
Scenar4( Scenar4 const & rSource );
Scenar4 & operator=( Scenar4 const & rSource );
};
#endif