We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f74ce1 commit b418292Copy full SHA for b418292
Internal/settings/Settings.cpp
@@ -74,6 +74,7 @@ namespace SettingsHelper {
74
Settings.MENU.ShowWatermark = true;
75
Settings.MENU.Watermark = "github.com/SplitgateDevelopment/Launcher";
76
Settings.MENU.ShowHotkey = VK_INSERT;
77
+ Settings.MENU.MenuPosition = {};
78
79
Settings.EXPLOITS.FOV = 80;
80
Settings.EXPLOITS.GodMode = false;
Internal/settings/Settings.h
@@ -1,11 +1,14 @@
1
#pragma once
2
3
+#include "../ue/Engine.h"
4
+
5
typedef struct {
6
struct {
7
bool ShowMenu;
8
bool ShowWatermark;
9
std::string Watermark;
10
int ShowHotkey;
11
+ FVector2D MenuPosition;
12
} MENU;
13
14
0 commit comments