2D-Platformer/Assets/Scripts/IParticleCollisionHandler.cs
2022-02-12 12:53:50 +02:00

9 lines
No EOL
149 B
C#

using UnityEngine;
namespace DefaultNamespace
{
public interface IParticleCollisionHandler
{
void OnParticleCollision(GameObject other);
}
}