Files
FueraDeEscala/Assets/PixPlays/Components/Scripts/IHittable.cs
2026-03-29 23:03:14 -07:00

11 lines
218 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace PixPlays.ElementalVFX
{
public interface IHittable
{
public void OnHit(Vector3 hitPoint,Vector3 normal);
}
}