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

16 lines
293 B
C
Raw Normal View History

2015-01-20 07:02:46 -05:00
#ifndef AIRCOMPRESSOR_H
#define AIRCOMPRESSOR_H
#include "WPILib.h"
class AirCompressor: public Subsystem
{
private:
Compressor *compressher;
public:
AirCompressor();
void InitDefaultCommand();
void CreateCompressedAir();
void StopCreatingCompressedAir();
};
#endif