Cyrus Mod Loader
Loading...
Searching...
No Matches
ControlTab__Page.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/ControlTab::Button.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/Window.h>
6
8public:
9 std::string getTabName() { // Property Generated Getter
10 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
11 }
12
13 void setTabName(std::string val) { // Property Generated Setter
14 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
15 }
16
17 SharedPointer<Window> * getTabWindow() { // Property Generated Getter
18 return reinterpret_cast<SharedPointer<Window> *>(reinterpret_cast<uintptr_t>(this) + 0x68);
19 }
20
21 void setTabWindow(SharedPointer<Window> * val) { // Property Generated Setter
22 *reinterpret_cast<SharedPointer<Window> **>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
23 }
24
25 SharedPointer<ControlTab__Button> * getTabButton() { // Property Generated Getter
26 return reinterpret_cast<SharedPointer<ControlTab__Button> *>(reinterpret_cast<uintptr_t>(this) + 0x78);
27 }
28
29 void setTabButton(SharedPointer<ControlTab__Button> * val) { // Property Generated Setter
30 *reinterpret_cast<SharedPointer<ControlTab__Button> **>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
31 }
32
33};
Definition ControlTab__Page.h:7
SharedPointer< Window > * getTabWindow()
Definition ControlTab__Page.h:17
void setTabWindow(SharedPointer< Window > *val)
Definition ControlTab__Page.h:21
std::string getTabName()
Definition ControlTab__Page.h:9
void setTabName(std::string val)
Definition ControlTab__Page.h:13
void setTabButton(SharedPointer< ControlTab__Button > *val)
Definition ControlTab__Page.h:29
SharedPointer< ControlTab__Button > * getTabButton()
Definition ControlTab__Page.h:25
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86