17 lines
263 B
C++
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
|