You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.1 KiB

3 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FragTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/23 15:17:41 by narnaud #+# #+# */
3 years ago
/* Updated: 2022/07/19 02:23:55 by narnaud ### ########.fr */
3 years ago
/* */
/* ************************************************************************** */
#pragma once
#include "ClapTrap.hpp"
class FragTrap : public ClapTrap {
public:
3 years ago
FragTrap (std::string name);
3 years ago
~FragTrap (void);
void attack(const std::string& target);
3 years ago
void highFivesGuys(void);
3 years ago
};