mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +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
|