25 lines
276 B
C++
25 lines
276 B
C++
#ifndef SCAVTRAP_HPP
|
|
# define SCAVTRAP_HPP
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include "ClapTrap.hpp"
|
|
|
|
class ScavTrap : public ClapTrap {
|
|
|
|
public:
|
|
|
|
~ScavTrap();
|
|
ScavTrap(std::string name);
|
|
|
|
void guardGate();
|
|
|
|
private:
|
|
|
|
void assignValues( ScavTrap & src);
|
|
|
|
};
|
|
|
|
#endif
|
|
|