コード例 #1
0
ファイル: EffectStat.cs プロジェクト: DaedalusGame/7DRL_2020
 public override bool StatEquals(Effect other)
 {
     return(other is Special stat && other.GetType() == GetType() && stat.Stat == Stat && stat.Tag == Tag);
 }
コード例 #2
0
ファイル: EffectStat.cs プロジェクト: DaedalusGame/7DRL_2020
 public override bool StatEquals(Effect other)
 {
     return(other is IStat stat && other.GetType() == GetType() && stat.Stat == Stat);
 }
コード例 #3
0
ファイル: EffectStat.cs プロジェクト: DaedalusGame/7DRL_2020
 public override bool StatEquals(Effect other)
 {
     return(other is Stackable stat && other.GetType() == GetType() && stat.Stat == Stat && stat.Holder == Holder);
 }