10 lines
240 B
C#
10 lines
240 B
C#
namespace UHFPS.Runtime
|
|
{
|
|
public interface IBreakableEntity : IDamagable
|
|
{
|
|
/// <summary>
|
|
/// Represents the current entity health.
|
|
/// </summary>
|
|
public int EntityHealth { get; set; }
|
|
}
|
|
} |