mirror of
https://github.com/team2059/Zaphod
synced 2024-12-28 20:12:29 -05:00
15 lines
288 B
C++
15 lines
288 B
C++
#include <WPILib.h>
|
|
#include "../Definitions.h"
|
|
|
|
class JoystickController
|
|
{
|
|
private:
|
|
Joystick *rightJoystick, *leftJoystick;
|
|
public:
|
|
int leftJoystickValues[];
|
|
int rightJoystickValues[];
|
|
JoystickController();
|
|
void getRightJoystick();
|
|
void getLeftJoystick();
|
|
};
|