Skip to main content

CanElevatorLiftMove

Usage​

  • Called when an elevator lift is attempting to move
  • Return true or false to override default behavior

Examples​

""
bool? CanElevatorLiftMove(ElevatorLift lift)
{
Puts("CanElevatorLiftMove works!");
return null;
}