Thought I would have some fun :)
The evil genius is not happy with health and safety interfering with his employee death machines. Just look at the changes that had to be implemented for dropping people into the shark tank located under the board room table!
public bool DropEmployeeIntoSharkTank(string employeeName)
{
var person = Repository.GetEmploee(employeeName);
var seat = Boardroom.GetSeat(person);
if (!seat.PersonDetected)
{
return false;
}
seat.WarningSiren.Enable();
seat.WarningLights.Enable();
Thread.Sleep(10 * Seconds);
seat.OpenTrapdoorToSharktank()
Thread.Sleep(10 * Seconds);
seat.WarningSiren.Disable();
seat.WarningLights.Disable();
Repository.EmploymentTerminated(person);
return true;
}
Your challenge is to create other death machine code that health and safety have ruined. The language does not matter, just tag your post with evilgeniusdeathmachine :)
Woz