Tuned intake.

Change-Id: I028f6cbb8df55d281734ca39abb4f62b7fd27793
diff --git a/y2018/control_loops/superstructure/superstructure.h b/y2018/control_loops/superstructure/superstructure.h
index ade5047..2081e6c 100644
--- a/y2018/control_loops/superstructure/superstructure.h
+++ b/y2018/control_loops/superstructure/superstructure.h
@@ -36,6 +36,15 @@
   intake::IntakeSide intake_right_;
   arm::Arm arm_;
 
+  enum class RotationState {
+    NOT_ROTATING = 0,
+    ROTATING_LEFT = 1,
+    ROTATING_RIGHT = 2
+  };
+
+  RotationState rotation_state_ = RotationState::NOT_ROTATING;
+  int rotation_count_ = 0;
+
   DISALLOW_COPY_AND_ASSIGN(Superstructure);
 };