feat(ex03): it works
This commit is contained in:
parent
5cd051a7f7
commit
7fb5f99a7a
11 changed files with 320 additions and 0 deletions
16
ex03/ScavTrap.hpp
Normal file
16
ex03/ScavTrap.hpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef SCAVTRAP_HPP
|
||||
#define SCAVTRAP_HPP
|
||||
|
||||
#include "ClapTrap.hpp"
|
||||
|
||||
class ScavTrap : public virtual ClapTrap {
|
||||
public:
|
||||
ScavTrap();
|
||||
ScavTrap(std::string name);
|
||||
~ScavTrap();
|
||||
ScavTrap &operator=(const ScavTrap &other);
|
||||
|
||||
void guardGate();
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue