-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScenar1.class.hpp
More file actions
36 lines (28 loc) · 1.24 KB
/
Scenar1.class.hpp
File metadata and controls
36 lines (28 loc) · 1.24 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
// ************************************************************************** //
// //
// ::: :::::::: //
// Scenar1.class.hpp :+: :+: :+: //
// +:+ +:+ +:+ //
// By: jmoiroux <jmoiroux@student.42.fr> +#+ +:+ +#+ //
// +#+#+#+#+#+ +#+ //
// Created: 2015/01/25 18:35:02 by jmoiroux #+# #+# //
// Updated: 2015/01/25 18:35:03 by jmoiroux ### ########.fr //
// //
// ************************************************************************** //
#ifndef SCENAR1_CLASS_HPP
# define SCENAR1_CLASS_HPP
# include "main.hpp"
# include "ft42.class.hpp"
class Scenar1 : public ft42 {
public:
t_data * d;
Scenar1();
~Scenar1();
void upWater( int z );
void go( void );
private:
Scenar1( Scenar1 const & rSource );
Scenar1 & operator=( Scenar1 const & rSource );
void rUpWater(t_data * d, int z, int y, int x);
};
#endif