Cyrus Mod Loader
Loading...
Searching...
No Matches
EmbeddedBrowserConfigEntry.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getSName() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setSName(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 std::string getSEmbeddedPage() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
17 }
18
19 void setSEmbeddedPage(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
21 }
22
23 std::string getSExternalPage() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90);
25 }
26
27 void setSExternalPage(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
29 }
30
31 std::string getSSteamPage() { // Property Generated Getter
32 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB0);
33 }
34
35 void setSSteamPage(std::string val) { // Property Generated Setter
36 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB0) = val;
37 }
38
39 unsigned int getNFlags() { // Property Generated Getter
40 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0xD0);
41 }
42
43 void setNFlags(unsigned int val) { // Property Generated Setter
44 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0xD0) = val;
45 }
46
47};
Definition EmbeddedBrowserConfigEntry.h:5
void setSSteamPage(std::string val)
Definition EmbeddedBrowserConfigEntry.h:35
void setSExternalPage(std::string val)
Definition EmbeddedBrowserConfigEntry.h:27
std::string getSSteamPage()
Definition EmbeddedBrowserConfigEntry.h:31
std::string getSEmbeddedPage()
Definition EmbeddedBrowserConfigEntry.h:15
unsigned int getNFlags()
Definition EmbeddedBrowserConfigEntry.h:39
void setSEmbeddedPage(std::string val)
Definition EmbeddedBrowserConfigEntry.h:19
std::string getSName()
Definition EmbeddedBrowserConfigEntry.h:7
std::string getSExternalPage()
Definition EmbeddedBrowserConfigEntry.h:23
void setNFlags(unsigned int val)
Definition EmbeddedBrowserConfigEntry.h:43
void setSName(std::string val)
Definition EmbeddedBrowserConfigEntry.h:11
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86