feat(ex02): it works
This commit is contained in:
parent
6254cbc7bd
commit
5cd051a7f7
9 changed files with 254 additions and 0 deletions
16
ex02/FragTrap.hpp
Normal file
16
ex02/FragTrap.hpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef FRAGTRAP_HPP
|
||||
#define FRAGTRAP_HPP
|
||||
|
||||
#include "ClapTrap.hpp"
|
||||
|
||||
class FragTrap : public ClapTrap {
|
||||
public:
|
||||
FragTrap();
|
||||
FragTrap(std::string name);
|
||||
~FragTrap();
|
||||
FragTrap &operator=(const FragTrap &other);
|
||||
|
||||
void highFivesGuys();
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue