Finish moving //y2014/... into its own namespace
Stuff didn't compile in the half-switched state it was in before.
Change-Id: I00ec3c79a2682982b12d4e8c8e682cb8625eb06d
diff --git a/y2014/control_loops/shooter/shooter.q b/y2014/control_loops/shooter/shooter.q
index eaaaa2e..ab8f590 100644
--- a/y2014/control_loops/shooter/shooter.q
+++ b/y2014/control_loops/shooter/shooter.q
@@ -1,4 +1,4 @@
-package frc971.control_loops;
+package y2014.control_loops;
import "aos/common/controls/control_loops.q";
import "frc971/control_loops/control_loops.q";
@@ -31,9 +31,9 @@
// plunger is all the way back and latched.
bool plunger;
// Gets triggered when the pusher is all the way back.
- PosedgeOnlyCountedHallEffectStruct pusher_distal;
+ .frc971.PosedgeOnlyCountedHallEffectStruct pusher_distal;
// Triggers just before pusher_distal.
- PosedgeOnlyCountedHallEffectStruct pusher_proximal;
+ .frc971.PosedgeOnlyCountedHallEffectStruct pusher_proximal;
// Triggers when the latch engages.
bool latch;
};