#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) {}; ~DoubleSpellT() = default; std::string GetSpellName() const override; void AddEffect(AttributeT a, int power) override; };