#pragma once #include #include "SpellT.h" class DoubleSpellT final: public SpellT { public: DoubleSpellT(std::string sName, std::string sDescription, std::string sResult): SpellT(sName, sDescription, sResult) {}; std::string GetSpellName() const; void AddEffect(AttributeT a, int power); };