Files
2026-03-03 05:27:03 +05:00

10 lines
240 B
C#

namespace UHFPS.Runtime
{
public interface IBreakableEntity : IDamagable
{
/// <summary>
/// Represents the current entity health.
/// </summary>
public int EntityHealth { get; set; }
}
}