using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class HandleParticleCollision : MonoBehaviour
{
    private void OnParticleCollision(GameObject other)
    {
        // print the name of the particle object
        print("collision from " + other.name);
    }
}
