예제 #1
0
 public bool EqualsView(FightGroundLayer o)
 {
     if (o == this)
     {
         return(true);
     }
     else if (o is FightBlypheLayer)
     {
         return((o as FightBlypheLayer).Color == this.Color && (o as FightBlypheLayer).Size == this.Size && (o as FightBlypheLayer).CellId == this.CellId);
     }
     else if (o is FightGlypheLayer)
     {
         return((o as FightGlypheLayer).Color == this.Color && (o as FightGlypheLayer).Size == this.Size && (o as FightGlypheLayer).CellId == this.CellId);
     }
     else
     {
         return(false);
     }
 }
예제 #2
0
 public void onApplyGroundLayer(FightGroundLayer layer, Fighter Caster, SpellLevel Spell, int TargetCellId, Fighter TargetFighter, Dictionary <EffectInfos, List <Fighter> > TargetEffects)
 {
 }