/* You should consider using the more terse Command factories API instead https://docs.wpilib.org/en/stable/docs/software/commandbased/organizing-command-based.html#defining-commands */
publicclassBalayeuseHautextendsCommand{
privateRequinrequin;
/** Creates a new Balayeuse. */
publicBalayeuseHaut(Requinrequin){
this.requin=requin;
addRequirements(requin);
// Use addRequirements() here to declare subsystem dependencies.
}
// Called when the command is initially scheduled.
@Override
publicvoidinitialize(){}
// Called every time the scheduler runs while the command is scheduled.