public bool load(Mag mag)
    {
        if (mag == null)
        {
            return(false);
        }
        if (mag.GetType() != typeof(AK_Mag))
        {
            return(false);
        }

        return(true);
    }