-
Notifications
You must be signed in to change notification settings - Fork 0
/
LightObstacle.hpp
32 lines (26 loc) · 1.28 KB
/
LightObstacle.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* LightObstacle.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dzui <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/05 21:34:05 by dzui #+# #+# */
/* Updated: 2017/11/05 21:34:07 by dzui ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CPP_RUSH_00_LIGHTOBSTACLE_H
#define CPP_RUSH_00_LIGHTOBSTACLE_H
#include "Obstacle.hpp"
class LightObstacle : public Obstacle
{
public:
LightObstacle();
explicit LightObstacle(int **map);
~LightObstacle();
LightObstacle(const LightObstacle &lo);
void setHP();
void generatePosition(int **map);
LightObstacle &operator=(const LightObstacle &lo);
};
#endif //CPP_RUSH_00_LIGHTOBSTACLE_H