From f02c513c323cfec54917dde7c0055740d3b3f8d8 Mon Sep 17 00:00:00 2001 From: MARKPRO44 <119742977+MARKPRO4444@users.noreply.github.com> Date: Wed, 16 Aug 2023 17:20:50 +0300 Subject: [PATCH] OptionsGUI.V.1 --- DangerousD/GameCore/GUI/OptionsGUI.cs | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/DangerousD/GameCore/GUI/OptionsGUI.cs b/DangerousD/GameCore/GUI/OptionsGUI.cs index acaa012..f5a4229 100644 --- a/DangerousD/GameCore/GUI/OptionsGUI.cs +++ b/DangerousD/GameCore/GUI/OptionsGUI.cs @@ -17,7 +17,10 @@ namespace DangerousD.GameCore.GUI rectangle = new Rectangle(650, 150, 100, 40) }; - Label lblOptions = new Label(Manager, 0); + var checkBox = new CheckBox(Manager); + checkBox.rectangle = new Rectangle(690, 400, 40, 40); + + Label lblOptions = new Label(Manager); lblOptions.fontName = "Font2"; lblOptions.text = "Options"; lblOptions.rectangle = new Rectangle(300, 20, 210, 50); @@ -25,8 +28,15 @@ namespace DangerousD.GameCore.GUI Label lblValue = new Label(Manager); lblValue.fontName = "Font2"; - lblValue.text = "Value"; - lblValue.rectangle = new Rectangle(400, 150, 250, 40); + lblValue.text = "Valume"; + lblValue.rectangle = new Rectangle(300, 150, 250, 40); + lblValue.mainColor = Color.Transparent; + + Label lblIsFullScreen = new Label(Manager); + lblIsFullScreen.fontName = "Font2"; + lblIsFullScreen.text = "Full Screen"; + lblIsFullScreen.rectangle = new Rectangle(300, 400, 250, 40); + lblIsFullScreen.mainColor = Color.Transparent; } } } \ No newline at end of file