Fix issue with shooter queue in wrong namespace.

Change-Id: Ib34b32d3f18bbc9a7c0b9be83ab19b2b36685fe9
diff --git a/y2016/wpilib/wpilib_interface.cc b/y2016/wpilib/wpilib_interface.cc
index 8ec212f..dfe1259 100644
--- a/y2016/wpilib/wpilib_interface.cc
+++ b/y2016/wpilib/wpilib_interface.cc
@@ -452,7 +452,7 @@
   ::std::unique_ptr<Relay> compressor_relay_;
 
   ::aos::Queue<::frc971::control_loops::DrivetrainQueue::Output> drivetrain_;
-  ::aos::Queue<::y2016::control_loops::ShooterQueue::Output> shooter_;
+  ::aos::Queue<::y2016::control_loops::shooter::ShooterQueue::Output> shooter_;
 
   ::std::atomic<bool> run_{true};
 };