internal void NotifyPutDown(GlowStick glowStick)
 {
     heldGlowSticks.Remove(glowStick);
     RefreshState();
 }
 internal void NotifyPickUp(GlowStick glowStick)
 {
     heldGlowSticks.Add(glowStick);
     RefreshState();
 }