Skip to content

Commit b418292

Browse files
committed
🔧 Add MenuPosition to Settings
1 parent 1f74ce1 commit b418292

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Internal/settings/Settings.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ namespace SettingsHelper {
7474
Settings.MENU.ShowWatermark = true;
7575
Settings.MENU.Watermark = "github.com/SplitgateDevelopment/Launcher";
7676
Settings.MENU.ShowHotkey = VK_INSERT;
77+
Settings.MENU.MenuPosition = {};
7778

7879
Settings.EXPLOITS.FOV = 80;
7980
Settings.EXPLOITS.GodMode = false;

Internal/settings/Settings.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
#pragma once
22

3+
#include "../ue/Engine.h"
4+
35
typedef struct {
46
struct {
57
bool ShowMenu;
68
bool ShowWatermark;
79
std::string Watermark;
810
int ShowHotkey;
11+
FVector2D MenuPosition;
912
} MENU;
1013

1114
struct {

0 commit comments

Comments
 (0)