first commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user