Пример #1
0
 public IEnumerable <Death> GetPlayerDeaths()
 {
     return(Deaths
            .Where(d => d.MatchId == this.Id &&
                   d.MindKey != null &&
                   d.MindName != "Manifested Ghost"));
 }
Пример #2
0
 public IEnumerable <Death> GetNpcDeaths()
 {
     return(Deaths
            .Where(d => d.MatchId == this.Id &&
                   d.MindKey == null));
 }