Cyrus Mod Loader
Loading...
Searching...
No Matches
FXOverrideBehaviorInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getFxToReplace() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
9 }
10
11 void setFxToReplace(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
13 }
14
15 std::string getFxReplaceWith() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90);
17 }
18
19 void setFxReplaceWith(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
21 }
22
23 std::string getFxCastToReplace() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB0);
25 }
26
27 void setFxCastToReplace(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB0) = val;
29 }
30
31 std::string getFxCastReplaceWith() { // Property Generated Getter
32 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xD0);
33 }
34
35 void setFxCastReplaceWith(std::string val) { // Property Generated Setter
36 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xD0) = val;
37 }
38
39 std::string getFxFidgetToReplace() { // Property Generated Getter
40 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xF0);
41 }
42
43 void setFxFidgetToReplace(std::string val) { // Property Generated Setter
44 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xF0) = val;
45 }
46
47 std::string getFxFidgetReplaceWith() { // Property Generated Getter
48 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x110);
49 }
50
51 void setFxFidgetReplaceWith(std::string val) { // Property Generated Setter
52 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x110) = val;
53 }
54
55};
Definition FXOverrideBehaviorInfo.h:5
void setFxToReplace(std::string val)
Definition FXOverrideBehaviorInfo.h:11
void setFxFidgetReplaceWith(std::string val)
Definition FXOverrideBehaviorInfo.h:51
void setFxReplaceWith(std::string val)
Definition FXOverrideBehaviorInfo.h:19
std::string getFxToReplace()
Definition FXOverrideBehaviorInfo.h:7
void setFxFidgetToReplace(std::string val)
Definition FXOverrideBehaviorInfo.h:43
std::string getFxCastToReplace()
Definition FXOverrideBehaviorInfo.h:23
void setFxCastReplaceWith(std::string val)
Definition FXOverrideBehaviorInfo.h:35
std::string getFxCastReplaceWith()
Definition FXOverrideBehaviorInfo.h:31
std::string getFxReplaceWith()
Definition FXOverrideBehaviorInfo.h:15
void setFxCastToReplace(std::string val)
Definition FXOverrideBehaviorInfo.h:27
std::string getFxFidgetReplaceWith()
Definition FXOverrideBehaviorInfo.h:47
std::string getFxFidgetToReplace()
Definition FXOverrideBehaviorInfo.h:39
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86