private void OnTriggerEnter(Collider other)
    {
        ICollectable obj = other.GetComponent <ICollectable>();

        obj?.Interact();
    }