-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScavTrap.hpp
More file actions
31 lines (25 loc) · 1.21 KB
/
ScavTrap.hpp
File metadata and controls
31 lines (25 loc) · 1.21 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ScavTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/15 10:52:30 by zelhajou #+# #+# */
/* Updated: 2024/06/15 10:53:30 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SCAVTRAP_HPP
#define SCAVTRAP_HPP
#include "ClapTrap.hpp"
class ScavTrap : public ClapTrap {
public:
ScavTrap();
ScavTrap(const std::string& name);
ScavTrap(const ScavTrap& src);
~ScavTrap();
ScavTrap& operator=(const ScavTrap& src);
void attack(const std::string& target);
void guardGate();
};
#endif