Files
allwpilib/eclipse-plugins/edu.wpi.first.wpilib.plugins.cpp/resources/templates/command-based/ExampleSubsystem.cpp

19 lines
360 B
C++
Raw Normal View History

#include "ExampleSubsystem.h"
#include "../RobotMap.h"
ExampleSubsystem::ExampleSubsystem() :
Subsystem("ExampleSubsystem")
{
}
void ExampleSubsystem::InitDefaultCommand()
{
// Set the default command for a subsystem here.
//SetDefaultCommand(new MySpecialCommand());
}
// Put methods for controlling this subsystem
// here. Call these from Commands.