1 2 3 4 5 6
using UnityEngine; public abstract class BounceEffect : MonoBehaviour { public abstract void DoBounce(HitInfo hit); }