Files
42_SIDE_exam_05_cpp/cpp_module_02/Fireball.hpp
2022-12-01 15:47:19 +01:00

17 lines
263 B
C++

#ifndef FIREBALL_HPP
#define FIREBALL_HPP
# include "ASpell.hpp"
class Fireball: public ASpell {
public:
Fireball(): ASpell("Fireball", "burnt to a crisp") {};
~Fireball() {};
virtual ASpell * clone() const {
return (new Fireball());
};
};
#endif