20 lines
209 B
C++
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
|
|
|