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