Files
42_SIDE_exam_05_cpp/cpp_module_02/Fireball.hpp
2022-12-12 22:34:11 +01:00

22 lines
266 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