14 lines
403 B
C++
14 lines
403 B
C++
#include "RobotomyRequestForm.hpp"
|
|
#include <cstdlib>
|
|
|
|
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;
|
|
}
|