#include "RobotomyRequestForm.hpp" #include RobotomyRequestAForm::RobotomyRequestAForm() : AForm("", 72, 45) {} RobotomyRequestAForm::RobotomyRequestAForm(std::string name) : AForm(name, 72, 45) {} void RobotomyRequestAForm::executeAction() { if (std::rand() % 2) std::cout << getTarget() << " has been robotomized!" << std::endl; else std::cout << "Robotomy failed." << std::endl; }