9 lines
150 B
C#
9 lines
150 B
C#
using UnityEngine;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public interface IOnKillEffect
|
|
{
|
|
void OnKill(GameObject killer, GameObject victim);
|
|
}
|
|
} |