22 lines
266 B
C++
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
|
|
|