23 lines
394 B
C++
23 lines
394 B
C++
#ifndef FRAGTRAP_HPP
|
|
# define FRAGTRAP_HPP
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
#include "ClapTrap.hpp"
|
|
|
|
class FragTrap: public ClapTrap {
|
|
public:
|
|
FragTrap();
|
|
FragTrap(const FragTrap ©);
|
|
FragTrap(std::string name);
|
|
|
|
virtual ~FragTrap();
|
|
|
|
FragTrap &operator=(const FragTrap &src);
|
|
|
|
void attack(const std::string &target);
|
|
void highFivesGuys(void);
|
|
};
|
|
|
|
#endif |