feat(ex01): it works

This commit is contained in:
Khaïs COLIN 2025-05-19 14:13:59 +02:00
parent 69e91f7664
commit 6254cbc7bd
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
7 changed files with 206 additions and 0 deletions

16
ex01/ScavTrap.hpp Normal file
View file

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