BattleInfoPlugin.Models.BattleResultHelper.GetLostCount C# (CSharp) Method

GetLostCount() public static method

public static GetLostCount ( this data ) : int
data this
return int
        public static int GetLostCount(this ShipData[] data) => data.Count(s => s.NowHP <= 0);