/// <summary>
        /// Initializes a new instance of the <see cref="GridMappingDrawingRulesSettingsMenuItem"/> class.
        /// </summary>
        public static void Draw()
        {
            var local = LocalizationManager.Instance;

            SettingHelpers.DrawSettingsIntField(GlobalConstants.ShowDrawingRulesButtonSizeKey, local.Get("SETT_ShowDrawRulesSize"), 22, 1, 100, Helpers.RedrawInspector);
            SettingHelpers.DrawSettingsIntField(GlobalConstants.DrawingRulesEntrySizeKey, local.Get("SETT_DrawingRuleEntrySize"), 22, 1, 100, Helpers.RedrawInspector);
            SettingHelpers.DrawSettingsBoolField(GlobalConstants.DrawingRulesOutputToConsoleKey, local.Get("SETT_DrawingRuleConsoleOutput"), false);
            SettingHelpers.DrawSettingsBoolField(GlobalConstants.DrawingRulesConfirmationKey, local.Get("SETT_DrawingRulesConfirmation"), true);
        }