Exemplo n.º 1
0
 /// <summary>
 /// Deal damage to a block, weakning it. When its health reaches 0 or less, it gets destroyed.
 /// </summary>
 public bool DamageBlock(int x, int y, int damage)
 {
     return(aMap.DamageBlock(x, y, damage));
 }