2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/src/Subsystems/Collector.h

14 lines
205 B
C++

#ifndef COLLECTOR_H
#define COLLECTOR_H
#include "Commands/Subsystem.h"
#include "WPILib.h"
class Collector: public Subsystem
{
private:
public:
ExampleSubsystem();
void InitDefaultCommand();
};
#endif