[examples] Add missing TestInit method to GettingStarted Example (#3039)

This commit is contained in:
sciencewhiz
2021-01-02 22:00:25 -08:00
committed by GitHub
parent e45a0f6ce2
commit 1fd09593cf
2 changed files with 6 additions and 0 deletions

View File

@@ -39,6 +39,8 @@ class Robot : public frc::TimedRobot {
m_robotDrive.ArcadeDrive(m_stick.GetY(), m_stick.GetX());
}
void TestInit() override {}
void TestPeriodic() override {}
private: