mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
19 lines
376 B
Java
19 lines
376 B
Java
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());
|
|
}
|
|
}
|
|
|