cpp/CPP05/ex03/RobotomyRequestForm.cpp
2024-12-04 17:29:31 +01:00

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;
}