void Equip(GunController gun, Hand hand)
    {
        switch (hand)
        {
        case Hand.Right:
            gun.BeEquipped(handR);
            break;

        case Hand.Left:
            gun.BeEquipped(handL);
            break;
        }
    }