diff --git a/DangerousD/GameCore/GUI/AbstractGui.cs b/DangerousD/GameCore/GUI/AbstractGui.cs index 892cb48..24af331 100644 --- a/DangerousD/GameCore/GUI/AbstractGui.cs +++ b/DangerousD/GameCore/GUI/AbstractGui.cs @@ -26,7 +26,7 @@ public abstract class AbstractGui : IDrawableObject public virtual void LoadContent() { - Manager.LoadContent(AppManager.Instance.Content, "Font"); + Manager.LoadContent(AppManager.Instance.Content, "Font2"); } public virtual void Update(GameTime gameTime) diff --git a/DangerousD/GameCore/GUI/OptionsGUI.cs b/DangerousD/GameCore/GUI/OptionsGUI.cs index 23f0d44..acaa012 100644 --- a/DangerousD/GameCore/GUI/OptionsGUI.cs +++ b/DangerousD/GameCore/GUI/OptionsGUI.cs @@ -14,14 +14,19 @@ namespace DangerousD.GameCore.GUI { MinValue = 0, MaxValue = 1, - rectangle = new Rectangle(650, 150, 100 ,40) + rectangle = new Rectangle(650, 150, 100, 40) }; Label lblOptions = new Label(Manager, 0); - lblOptions.fontName = "font2"; + lblOptions.fontName = "Font2"; lblOptions.text = "Options"; lblOptions.rectangle = new Rectangle(300, 20, 210, 50); lblOptions.mainColor = Color.Transparent; + + Label lblValue = new Label(Manager); + lblValue.fontName = "Font2"; + lblValue.text = "Value"; + lblValue.rectangle = new Rectangle(400, 150, 250, 40); } } } \ No newline at end of file