adds empty methods for those in IterativeRobot

This commit is contained in:
Brendan Haines 2015-08-19 00:34:36 -06:00
parent 984e1ff67e
commit eb3f8371c5

View File

@ -146,10 +146,23 @@ public:
///// TEST /////
////////////////
void TestInit()
{}
void TestPeriodic()
{
lw->Run();
}
////////////////////
///// DISABLED /////
////////////////////
void DisabledInit()
{}
void DisabledPeriodic()
{}
};
START_ROBOT_CLASS(Robot);