public void OnCollisionEnter(Collision other)
    {
        ;

        switch (other.GetContact(0).thisCollider.name)
        {
        case "C":     // Contact collider
            m_BarnObjectModel.TriggerContactEnter(other.gameObject);
            break;
        }
    }