blob: a87bb4e81997fbf3852f88ad60702b1da05ea062 [file] [log] [blame]
Brian Silverman26e4e522015-12-17 01:56:40 -05001/*----------------------------------------------------------------------------*/
Brian Silverman1a675112016-02-20 20:42:49 -05002/* Copyright (c) FIRST 2008-2016. All Rights Reserved. */
Brian Silverman26e4e522015-12-17 01:56:40 -05003/* Open Source Software - may be modified and shared by FRC teams. The code */
Brian Silverman1a675112016-02-20 20:42:49 -05004/* must be accompanied by the FIRST BSD license file in the root directory of */
5/* the project. */
Brian Silverman26e4e522015-12-17 01:56:40 -05006/*----------------------------------------------------------------------------*/
Brian Silverman1a675112016-02-20 20:42:49 -05007
Brian Silverman26e4e522015-12-17 01:56:40 -05008#pragma once
9
10#include "RobotBase.h"
11
12class SampleRobot : public RobotBase
13{
14public:
15 SampleRobot();
16 virtual ~SampleRobot() = default;
17 virtual void RobotInit();
18 virtual void Disabled();
19 virtual void Autonomous();
20 virtual void OperatorControl();
21 virtual void Test();
22 virtual void RobotMain();
23 void StartCompetition();
24
25private:
26 bool m_robotMainOverridden;
27};