Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
axstin
GitHub Repository: axstin/rbxfpsunlocker
Path: blob/master/Source/rfu.h
259 views
1
#pragma once
2
3
#include <cstdint>
4
5
#define RFU_VERSION "5.2"
6
#define RFU_GITHUB_REPO "axstin/rbxfpsunlocker"
7
8
namespace RFU
9
{
10
namespace Event
11
{
12
constexpr uint32_t UNLOCK_CLIENT = 1u << 0u;
13
constexpr uint32_t UNLOCK_STUDIO = 1u << 1u;
14
constexpr uint32_t FPS_CAP = 1u << 2u;
15
constexpr uint32_t ALT_ENTER = 1u << 3u;
16
constexpr uint32_t UNLOCK_METHOD = 1u << 4u;
17
constexpr uint32_t SETTINGS_MASK = (1u << 5u) - 1u; // indicates a setting event, but not necessarily that settings were changed (e.g. load from disk)
18
19
constexpr uint32_t PROCESS_DIED = 1u << 5u;
20
constexpr uint32_t CLOSE = 1u << 6u;
21
constexpr uint32_t APP_EXIT = 1u << 7u;
22
constexpr uint32_t CLOSE_MASK = PROCESS_DIED | CLOSE | APP_EXIT;
23
}
24
25
bool CheckForUpdates();
26
void OnEvent(uint32_t);
27
}
28
29
30
31