20 lines
349 B
C++
20 lines
349 B
C++
#ifndef SCAVTRAP_HPP
|
|
# define SCAVTRAP_HPP
|
|
|
|
#include "ClapTrap.hpp"
|
|
#include <iostream>
|
|
|
|
class FragTrap : public ClapTrap {
|
|
public:
|
|
FragTrap();
|
|
FragTrap(std::string name);
|
|
~FragTrap();
|
|
FragTrap(const FragTrap &clap);
|
|
FragTrap& operator=(const FragTrap &clap);
|
|
|
|
void attack(const std::string& target);
|
|
void highFivesGuys();
|
|
};
|
|
|
|
#endif
|