Files
42_INT_09_piscine_cpp/d04/ex03/headers/Cure.hpp
2022-02-27 22:07:04 +01:00

20 lines
209 B
C++

#ifndef CURE_HPP
# define CURE_HPP
#include "AMateria.hpp"
class Cure : public AMateria {
public:
Cure();
Cure( Cure const & src );
~Cure();
Cure & operator=( Cure const & rhs );
private:
};
#endif