Cyrus Mod Loader
Loading...
Searching...
No Matches
BattlegroundPolymorphList.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/RatingBadgeInfo.h>
5
7public:
8 Vector<unsigned int> getPolymorphList() { // Property Generated Getter
9 return *reinterpret_cast<Vector<unsigned int>*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setPolymorphList(Vector<unsigned int> val) { // Property Generated Setter
13 *reinterpret_cast<Vector<unsigned int>*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 std::string getPolymorphCategory() { // Property Generated Getter
17 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78);
18 }
19
20 void setPolymorphCategory(std::string val) { // Property Generated Setter
21 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
22 }
23
24 std::string getPolymorphRole() { // Property Generated Getter
25 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB8);
26 }
27
28 void setPolymorphRole(std::string val) { // Property Generated Setter
29 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xB8) = val;
30 }
31
32 Vector<SharedPointer<RatingBadgeInfo>> * getRatingBadgeInfo() { // Property Generated Getter
33 return reinterpret_cast<Vector<SharedPointer<RatingBadgeInfo>> *>(reinterpret_cast<uintptr_t>(this) + 0x60);
34 }
35
36 void setRatingBadgeInfo(Vector<SharedPointer<RatingBadgeInfo>> * val) { // Property Generated Setter
37 *reinterpret_cast<Vector<SharedPointer<RatingBadgeInfo>> **>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
38 }
39
40};
Definition BattlegroundPolymorphList.h:6
void setPolymorphCategory(std::string val)
Definition BattlegroundPolymorphList.h:20
Vector< SharedPointer< RatingBadgeInfo > > * getRatingBadgeInfo()
Definition BattlegroundPolymorphList.h:32
void setRatingBadgeInfo(Vector< SharedPointer< RatingBadgeInfo > > *val)
Definition BattlegroundPolymorphList.h:36
Vector< unsigned int > getPolymorphList()
Definition BattlegroundPolymorphList.h:8
void setPolymorphList(Vector< unsigned int > val)
Definition BattlegroundPolymorphList.h:12
std::string getPolymorphCategory()
Definition BattlegroundPolymorphList.h:16
void setPolymorphRole(std::string val)
Definition BattlegroundPolymorphList.h:28
std::string getPolymorphRole()
Definition BattlegroundPolymorphList.h:24
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86