mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
21 lines
387 B
C
21 lines
387 B
C
|
|
#ifndef EXAMPLE_SUBSYSTEM_H
|
||
|
|
#define EXAMPLE_SUBSYSTEM_H
|
||
|
|
#include "Commands/Subsystem.h"
|
||
|
|
#include "WPILib.h"
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* @author ExampleAuthor
|
||
|
|
*/
|
||
|
|
class ExampleSubsystem: public Subsystem {
|
||
|
|
private:
|
||
|
|
// It's desirable that everything possible under private except
|
||
|
|
// for methods that implement subsystem capabilities
|
||
|
|
public:
|
||
|
|
ExampleSubsystem();
|
||
|
|
void InitDefaultCommand();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|