private void DrawMenuItem(RenderTarget target, MenuItem menuItem, int x, Color color, int size, bool bold = true, bool textshadow = false) { DrawText(target, mainFont, menuItem.Name, x, menuItem.Y, color, size, bold, textshadow); }
public Menu() { RecalculateMenuItemsPosition(_menuItems); _selectedMenuItem = _menuItems[0]; }