7 lines
75 B
C#
7 lines
75 B
C#
using UnityEngine;
|
|
|
|
public interface IPlayer
|
|
{
|
|
bool isDead { get; }
|
|
}
|