summaryrefslogtreecommitdiff
path: root/Penguloon/StaticUIValues.cs
diff options
context:
space:
mode:
authoraldrikboy <aldrikboy@gmail.com>2017-12-14 16:39:16 +0100
committeraldrikboy <aldrikboy@gmail.com>2017-12-14 16:39:16 +0100
commitff30178f505c69bc70b0770a3220ebd6d4706c74 (patch)
treef51c85aa9b7728af5e79c26abd9de47228d888fa /Penguloon/StaticUIValues.cs
parent60e8e48047e774a711fee35dfc58a7be993c3d88 (diff)
dab
Diffstat (limited to 'Penguloon/StaticUIValues.cs')
-rw-r--r--Penguloon/StaticUIValues.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/Penguloon/StaticUIValues.cs b/Penguloon/StaticUIValues.cs
index 69a845e..015ffc0 100644
--- a/Penguloon/StaticUIValues.cs
+++ b/Penguloon/StaticUIValues.cs
@@ -20,11 +20,16 @@ namespace Penguloon
public static string MenuFont { get; set; }
public static string IngameFont { get; set; }
+ public static string IngameFontSmall { get; set; }
public static int IngameUIWidth { get; set; }
public static int BorderWidth { get; set; } = 20;
+ public static int IngameUITextAreaHeight { get; set; }
+
+ public static int IngameUIPlayButtonHeight { get; set; }
+
public static void Initialize(Main main)
{
ScreenViewport = main.GraphicsDevice.Viewport.Bounds.Size.ToVector2();
@@ -58,13 +63,16 @@ namespace Penguloon
MenuFont = "Fonts/GWENT/48";
}
- IngameFont = "Fonts/GWENT/36";
+ IngameFont = "Fonts/GWENT/24";
+ IngameFontSmall = "Fonts/GWENT/16";
LoadingProgressbarPosition = new Vector2((ScreenViewport.X - LoadingProgressbarSize.X) / 2, ScreenViewport.Y - LoadingProgressbarSize.Y - 200);
LoadingProgressbarValuePosition = new Vector2(LoadingProgressbarPosition.X + 5, LoadingProgressbarPosition.Y + 5);
IngameUIWidth = 250;
SnowflakeSize = 100;
+ IngameUITextAreaHeight = 120;
+ IngameUIPlayButtonHeight = 120;
}
}
} \ No newline at end of file