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

us.ihmc.scs2.definition.controller.interfaces.ControllerDefinition Maven / Gradle / Ivy

package us.ihmc.scs2.definition.controller.interfaces;

import us.ihmc.scs2.definition.controller.ControllerInput;
import us.ihmc.scs2.definition.controller.ControllerOutput;

public interface ControllerDefinition
{
   Controller newController(ControllerInput controllerInput, ControllerOutput controllerOutput);

   public static ControllerDefinition emptyControllerDefinition()
   {
      return (input, output) -> Controller.emptyController();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy