#include "ConsumableObject.h" void ConsumableObject::set_potency(const Range & range) { this->potency_min = range.min; this->potency_max = range.max; } Range ConsumableObject::get_potency() const { return { this->potency_min, this->potency_max }; }