mirror of
https://github.com/Ladebeze66/cpp-partie-1.git
synced 2025-12-16 05:58:04 +01:00
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* FragTrap.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/12/30 16:19:16 by fgras-ca #+# #+# */
|
|
/* Updated: 2023/12/30 22:33:38 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FRAGTRAP_HPP
|
|
#define FRAGTRAP_HPP
|
|
|
|
#include "ClapTrap.hpp"
|
|
|
|
class FragTrap : public ClapTrap
|
|
{
|
|
public:
|
|
FragTrap();
|
|
FragTrap(std::string name);
|
|
FragTrap(const FragTrap ©);
|
|
FragTrap & operator = (const FragTrap &operator_aff);
|
|
~FragTrap();
|
|
|
|
void attack(const std::string& target);
|
|
void highFivesGuys(void);
|
|
};
|
|
|
|
#endif
|