-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFragTrap.hpp
35 lines (28 loc) · 1.27 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
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FragTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aperez-b <aperez-b@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/22 17:37:20 by aperez-b #+# #+# */
/* Updated: 2022/09/23 14:33:00 by aperez-b ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FRAGTRAP_HPP
# define FRAGTRAP_HPP
# include "ScavTrap.hpp"
class FragTrap: public virtual ClapTrap
{
public:
/* Constructors & Destructors */
FragTrap(void);
FragTrap(std::string const &name);
FragTrap(FragTrap const ©);
~FragTrap(void);
/* Basic Operators */
FragTrap &operator=(FragTrap const ©);
/* Main Member Functions */
void highFivesGuys(void);
};
#endif