-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFragTrap.hpp
32 lines (26 loc) · 1.22 KB
/
FragTrap.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FragTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/15 15:38:04 by zelhajou #+# #+# */
/* Updated: 2024/06/15 15:43:34 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FRAGTRAP_HPP
#define FRAGTRAP_HPP
#include "ClapTrap.hpp"
class FragTrap : public ClapTrap
{
public:
FragTrap();
FragTrap(const std::string& name);
FragTrap(const FragTrap& src);
~FragTrap();
FragTrap& operator=(const FragTrap& src);
void attack(const std::string& target);
void highFivesGuys(void);
};
#endif