using Grid;
public interface IDestructable {
GridPosition GridPosition { get; }
void Damage(float damageAmount);
}