feat(ex03): it works

This commit is contained in:
Khaïs COLIN 2025-05-20 11:24:16 +02:00
parent 5cd051a7f7
commit 7fb5f99a7a
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
11 changed files with 320 additions and 0 deletions

16
ex03/FragTrap.hpp Normal file
View file

@ -0,0 +1,16 @@
#ifndef FRAGTRAP_HPP
#define FRAGTRAP_HPP
#include "ClapTrap.hpp"
class FragTrap : public virtual ClapTrap {
public:
FragTrap();
FragTrap(std::string name);
~FragTrap();
FragTrap &operator=(const FragTrap &other);
void highFivesGuys();
};
#endif