mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
18 lines
194 B
C
18 lines
194 B
C
|
|
#ifndef $classname_H
|
|
#define $classname_H
|
|
|
|
#include "Commands/CommandGroup.h"
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author ExampleAuthor
|
|
*/
|
|
class $classname: public CommandGroup {
|
|
public:
|
|
$classname();
|
|
};
|
|
|
|
#endif
|