Example #1
0
 public override void KillWall(int i, int j, int type, ref bool fail)
 {
     if (!fail)
     {
         fail = WallUtils.isProtected(i, j);
     }
 }
Example #2
0
 public override bool KillSound(int i, int j, int type)
 {
     return(!WallUtils.isProtected(i, j));
 }
Example #3
0
 public override bool CreateDust(int i, int j, int type, ref int dustType)
 {
     return(!WallUtils.isProtected(i, j));
 }