d03 ex03 introduction template pour main

This commit is contained in:
Hugo LAMY
2022-02-19 10:03:39 +01:00
parent a2bd7db6a9
commit 817fac957b
10 changed files with 476 additions and 0 deletions

19
d03/ex03/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