From eb3f8371c5fed7ccd6a437a3b79f9374d12fbf05 Mon Sep 17 00:00:00 2001 From: Brendan Date: Wed, 19 Aug 2015 00:34:36 -0600 Subject: [PATCH] adds empty methods for those in IterativeRobot --- src/Robot.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Robot.cpp b/src/Robot.cpp index 34a665a..ed3595a 100644 --- a/src/Robot.cpp +++ b/src/Robot.cpp @@ -146,10 +146,23 @@ public: ///// TEST ///// //////////////// + void TestInit() + {} + void TestPeriodic() { lw->Run(); } + + //////////////////// + ///// DISABLED ///// + //////////////////// + + void DisabledInit() + {} + + void DisabledPeriodic() + {} }; START_ROBOT_CLASS(Robot);