mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
19 lines
274 B
C++
19 lines
274 B
C++
#ifndef EXAMPLE_COMMAND_H
|
|
#define EXAMPLE_COMMAND_H
|
|
|
|
#include "../CommandBase.h"
|
|
#include "WPILib.h"
|
|
|
|
class ExampleCommand: public CommandBase
|
|
{
|
|
public:
|
|
ExampleCommand();
|
|
void Initialize();
|
|
void Execute();
|
|
bool IsFinished();
|
|
void End();
|
|
void Interrupted();
|
|
};
|
|
|
|
#endif
|