mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
14 lines
95 B
C
14 lines
95 B
C
|
|
#ifndef OI_H
|
||
|
|
#define OI_H
|
||
|
|
|
||
|
|
#include "WPILib.h"
|
||
|
|
|
||
|
|
class OI {
|
||
|
|
private:
|
||
|
|
|
||
|
|
public:
|
||
|
|
OI();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|