2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00

Fixed indentation

This commit is contained in:
Austen Adler 2015-02-02 20:43:22 -05:00
parent 4717e6f029
commit 7f3a504472
8 changed files with 38 additions and 34 deletions

4
OI.cpp
View File

@ -16,10 +16,14 @@ OI::OI() {
JoystickButton *right2=new JoystickButton(rightStick, 2);
JoystickButton *right3=new JoystickButton(rightStick, 3);
JoystickButton *right4=new JoystickButton(rightStick, 4);
JoystickButton *right5=new JoystickButton(rightStick, 5);
JoystickButton *right6=new JoystickButton(rightStick, 6);
right1->WhenPressed(new OpenCollector());
right2->WhenPressed(new CloseCollector());
right3->WhenPressed(new CollectTote());
right4->WhenPressed(new ReleaseTote());
right5->WhenPressed(new StartCompressing());
right6->WhenPressed(new StopCompressing());
}
Joystick* OI::GetRightStick(){
return rightStick;