2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Subsystems/AirCompressor.h
2015-02-02 20:43:22 -05:00

16 lines
277 B
C++

#ifndef AIRCOMPRESSOR_H
#define AIRCOMPRESSOR_H
#include "WPILib.h"
class AirCompressor: public Subsystem
{
private:
Compressor *compressor;
public:
AirCompressor();
void InitDefaultCommand();
void StartCompressing();
void StopCompressing();
};
#endif