10 lines
177 B
C#
10 lines
177 B
C#
using JetBrains.Annotations;
|
|
using UnityEngine;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public interface IDeathBehavior
|
|
{
|
|
void Die([CanBeNull] GameObject killer = null);
|
|
}
|
|
} |