Files
allwpilib/eclipse-plugins/edu.wpi.first.wpilib.plugins.java/resources/templates/command-based/Subsystem.java

19 lines
376 B
Java
Raw Normal View History

package $package;
import edu.wpi.first.wpilibj.command.Subsystem;
/**
*
*/
public class $classname extends Subsystem {
// Put methods for controlling this subsystem
// here. Call these from Commands.
public void initDefaultCommand() {
// Set the default command for a subsystem here.
//setDefaultCommand(new MySpecialCommand());
}
}