first commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#ifndef SCAVTRAP_HPP
|
||||
# define SCAVTRAP_HPP
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
#include "ClapTrap.hpp"
|
||||
|
||||
class ScavTrap: public ClapTrap {
|
||||
private:
|
||||
bool _guarding_gate;
|
||||
public:
|
||||
ScavTrap();
|
||||
ScavTrap(const ScavTrap ©);
|
||||
ScavTrap(std::string name);
|
||||
|
||||
virtual ~ScavTrap();
|
||||
|
||||
ScavTrap &operator=(const ScavTrap &src);
|
||||
|
||||
void attack(const std::string &target);
|
||||
void guardGate(void);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user