2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00
dent/src/Subsystems/Collector.h

13 lines
176 B
C
Raw Normal View History

#ifndef COLLECTOR_H
#define COLLECTOR_H
#include "WPILib.h"
class Collector: public Subsystem
{
2015-01-16 20:12:48 -05:00
private:
public:
Collector();
void InitDefaultCommand();
};
#endif