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

19
d03/ex02/FragTrap.hpp Normal file
View File

@@ -0,0 +1,19 @@
#ifndef FRAGTRAP_HPP
# define FRAGTRAP_HPP
#include <iostream>
#include <string>
#include "ClapTrap.hpp"
class FragTrap : public ClapTrap {
public:
FragTrap(std::string name);
~FragTrap( void );
void highFivesGuys();
};
#endif