d03 ex02 fragtrap ok

This commit is contained in:
Hugo LAMY
2022-02-18 19:10:18 +01:00
parent 1d9b557b57
commit a2bd7db6a9
10 changed files with 562 additions and 0 deletions

20
d03/ex02/ScavTrap.hpp Normal file
View File

@@ -0,0 +1,20 @@
#ifndef SCAVTRAP_HPP
# define SCAVTRAP_HPP
#include <iostream>
#include <string>
#include "ClapTrap.hpp"
class ScavTrap : public ClapTrap {
public:
ScavTrap(std::string name);
~ScavTrap();
void guardGate();
};
#endif