summaryrefslogtreecommitdiff
path: root/Penguloon/StaticUIValues.cs
diff options
context:
space:
mode:
authoraldrikboy <aldrikboy@gmail.com>2018-01-14 15:46:58 +0100
committeraldrikboy <aldrikboy@gmail.com>2018-01-14 15:46:58 +0100
commita0217e8ffaceb6bc109eec270c754935a54eb404 (patch)
tree612a5c6b54148b45a05eb74ea40af541ec69cbb2 /Penguloon/StaticUIValues.cs
parent8d30b5ac461e95cabfc74e46b610beabd81cb460 (diff)
upgrades
Diffstat (limited to 'Penguloon/StaticUIValues.cs')
-rw-r--r--Penguloon/StaticUIValues.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Penguloon/StaticUIValues.cs b/Penguloon/StaticUIValues.cs
index b3238bd..230b29c 100644
--- a/Penguloon/StaticUIValues.cs
+++ b/Penguloon/StaticUIValues.cs
@@ -43,6 +43,8 @@ namespace Penguloon
public static Vector2 AlertSize { get; set; }
+ public static Vector2 UpgradePanelSize { get; set; }
+
public static void Initialize(Main main)
{
ScreenViewport = main.GraphicsDevice.Viewport.Bounds.Size.ToVector2();
@@ -124,6 +126,8 @@ namespace Penguloon
AlertSize = new Vector2((int)(800 * 0.8), (int)(200 * 0.8));
}
+ UpgradePanelSize = new Vector2(IngameUIWidth, 100);
+
LoadingProgressbarPosition = new Vector2((ScreenViewport.X - LoadingProgressbarSize.X) / 2, ScreenViewport.Y - LoadingProgressbarSize.Y - 200);
LoadingProgressbarValuePosition = new Vector2(LoadingProgressbarPosition.X + 5, LoadingProgressbarPosition.Y + 5);