All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.simulationconstructionset.DoNothingController Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
package us.ihmc.simulationconstructionset;

import us.ihmc.simulationconstructionset.util.RobotController;
import us.ihmc.yoVariables.registry.YoRegistry;

public final class DoNothingController implements RobotController
{
   private final YoRegistry registry = new YoRegistry("DoNothingController");

   @Override
   public YoRegistry getYoRegistry()
   {
      return registry;
   }

   @Override
   public void doControl()
   {
   }

   @Override
   public String getName()
   {
      return "doNothing";
   }

   @Override
   public void initialize()
   {
   }

   @Override
   public String getDescription()
   {
      return getName();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy