d03 ex01 debut

This commit is contained in:
Hugo LAMY
2022-02-17 19:59:25 +01:00
parent 1640b9a15d
commit 8cbff6a7c5
8 changed files with 383 additions and 1 deletions

18
d03/ex01/ScavTrap.hpp Normal file
View File

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