Cyrus Mod Loader
Loading...
Searching...
No Matches
BugReport.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Enums/BugType.h>
5
6class BugReport : public PropertyClass {
7public:
8 std::string getClientVersion() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setClientVersion(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 BugType getType() { // Property Generated Getter
17 return *reinterpret_cast<BugType*>(reinterpret_cast<uintptr_t>(this) + 0x68);
18 }
19
20 void setType(BugType val) { // Property Generated Setter
21 *reinterpret_cast<BugType*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
22 }
23
24 bool getCanReproduce() { // Property Generated Getter
25 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x6C);
26 }
27
28 void setCanReproduce(bool val) { // Property Generated Setter
29 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x6C) = val;
30 }
31
32 std::wstring getDescription() { // Property Generated Getter
33 return *reinterpret_cast<std::wstring*>(reinterpret_cast<uintptr_t>(this) + 0x70);
34 }
35
36 void setDescription(std::wstring val) { // Property Generated Setter
37 *reinterpret_cast<std::wstring*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
38 }
39
40};
Definition BugReport.h:6
void setDescription(std::wstring val)
Definition BugReport.h:36
void setCanReproduce(bool val)
Definition BugReport.h:28
std::wstring getDescription()
Definition BugReport.h:32
void setType(BugType val)
Definition BugReport.h:20
void setClientVersion(std::string val)
Definition BugReport.h:12
std::string getClientVersion()
Definition BugReport.h:8
bool getCanReproduce()
Definition BugReport.h:24
BugType getType()
Definition BugReport.h:16
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86