2019-12-29 16:02:49 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2020-10-07 21:57:50 -07:00
|
|
|
/* Copyright (c) 2019-2020 FIRST. All Rights Reserved. */
|
2019-12-29 16:02:49 -05:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include "ReplaceMeParallelDeadlineGroup.h"
|
|
|
|
|
|
|
|
|
|
#include <frc2/command/InstantCommand.h>
|
|
|
|
|
|
|
|
|
|
// NOTE: Consider using this command inline, rather than writing a subclass.
|
|
|
|
|
// For more information, see:
|
2020-10-07 21:57:50 -07:00
|
|
|
// https://docs.wpilib.org/en/stable/docs/software/commandbased/convenience-features.html
|
2019-12-29 16:02:49 -05:00
|
|
|
ReplaceMeParallelDeadlineGroup::ReplaceMeParallelDeadlineGroup()
|
|
|
|
|
: CommandHelper(
|
|
|
|
|
// The deadline command
|
|
|
|
|
frc2::InstantCommand([] {})) {
|
|
|
|
|
// Add your commands here, e.g.
|
|
|
|
|
// AddCommands(FooCommand(), BarCommand());
|
|
|
|
|
}
|