public void DrawTooltip(SpriteBatch spriteBatch) { if (_showHoverText) { FontHelper.DrawTooltip(spriteBatch, _hoverText); } }
public void DrawToolTip(SpriteBatch spriteBatch) { if (IsHovered() && !_isReturningToDefaultPos) { string name = "Name not found"; name = _tile.Id.ToString(); FontHelper.DrawTooltip(spriteBatch, name); } }