petites transformations sur les makefiles
This commit is contained in:
19
d04/ex03/headers/Cure.hpp
Normal file
19
d04/ex03/headers/Cure.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
|
||||
Reference in New Issue
Block a user