Cyrus Mod Loader
Loading...
Searching...
No Matches
InfractionEvent.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getEventName() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setEventName(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 float getBasePoints() { // Property Generated Getter
16 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x6C);
17 }
18
19 void setBasePoints(float val) { // Property Generated Setter
20 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x6C) = val;
21 }
22
23 float getRepeatScaler() { // Property Generated Getter
24 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x70);
25 }
26
27 void setRepeatScaler(float val) { // Property Generated Setter
28 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
29 }
30
31 std::string getLifespan() { // Property Generated Getter
32 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78);
33 }
34
35 void setLifespan(std::string val) { // Property Generated Setter
36 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
37 }
38
39 bool getCollapse() { // Property Generated Getter
40 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x9C);
41 }
42
43 void setCollapse(bool val) { // Property Generated Setter
44 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x9C) = val;
45 }
46
47};
Definition InfractionEvent.h:5
void setLifespan(std::string val)
Definition InfractionEvent.h:35
std::string getLifespan()
Definition InfractionEvent.h:31
float getRepeatScaler()
Definition InfractionEvent.h:23
bool getCollapse()
Definition InfractionEvent.h:39
void setCollapse(bool val)
Definition InfractionEvent.h:43
void setBasePoints(float val)
Definition InfractionEvent.h:19
float getBasePoints()
Definition InfractionEvent.h:15
std::string getEventName()
Definition InfractionEvent.h:7
void setEventName(std::string val)
Definition InfractionEvent.h:11
void setRepeatScaler(float val)
Definition InfractionEvent.h:27
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86