RemoteTech.UI.OptionWindow.drawOptionContent C# (CSharp) Method

drawOptionContent() private method

todo
private drawOptionContent ( ) : void
return void
        private void drawOptionContent()
        {
            GUILayout.BeginHorizontal();
            {
                this.mOptionScrollPosition = GUILayout.BeginScrollView(this.mOptionScrollPosition);
                {
                    switch ((OPTION_MENUS)this.mMenuValue)
                    {
                        case OPTION_MENUS.WorldScale:
                            {
                                this.drawWorldScaleContent();
                                break;
                            }
                        case OPTION_MENUS.AlternativeRules:
                            {
                                this.drawAlternativeRulesContent();
                                break;
                            }
                        case OPTION_MENUS.VisualStyle:
                            {
                                this.drawVisualStyleContent();
                                break;
                            }
                        case OPTION_MENUS.Miscellaneous:
                            {
                                this.drawMiscellaneousContent();
                                break;
                            }
                        case OPTION_MENUS.Presets:
                            {
                                this.drawPresetsContent();
                                break;
                            }
                        case OPTION_MENUS.Cheats:
                            {
                                this.drawCheatContent();
                                break;
                            }
                        case OPTION_MENUS.Start:
                        default:
                            {
                                this.drawStartContent();
                                break;
                            }
                    }
                }
                GUILayout.EndScrollView();
            }
            GUILayout.EndHorizontal();
        }