Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
axstin
GitHub Repository: axstin/rbxfpsunlocker
Path: blob/master/Source/settings.h
259 views
1
#pragma once
2
3
#include <vector>
4
5
namespace Settings
6
{
7
enum class UnlockMethodType
8
{
9
Hybrid,
10
MemoryWrite_Deprecated,
11
FlagsFile,
12
13
Count
14
};
15
16
extern std::vector<double> FPSCapValues;
17
extern uint32_t FPSCapSelection;
18
extern double FPSCap;
19
extern bool UnlockClient;
20
extern bool UnlockStudio;
21
extern bool CheckForUpdates;
22
extern bool AltEnterFix;
23
extern bool NonBlockingErrors;
24
extern bool SilentErrors;
25
extern bool QuickStart;
26
extern bool RevertFlagsOnClose;
27
extern UnlockMethodType UnlockMethod;
28
29
bool Init();
30
bool Load();
31
bool Save();
32
}
33